mirror of
https://github.com/BertoldVdb/ZoneDetect.git
synced 2026-06-29 05:19:31 +00:00
Fixed macOS build issue and integer precision warning
This commit is contained in:
parent
16591e8ea8
commit
4de6f3a735
1 changed files with 2 additions and 1 deletions
|
|
@ -26,6 +26,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/mman.h>
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <fcntl.h>
|
||||
|
|
@ -36,7 +37,7 @@
|
|||
|
||||
struct ZoneDetectOpaque {
|
||||
int fd;
|
||||
uint32_t length;
|
||||
off_t length;
|
||||
uint8_t* mapping;
|
||||
|
||||
uint8_t tableType;
|
||||
|
|
|
|||
Loading…
Reference in a new issue