X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/58c2960960782a41d796892d7ead4b60e149b797..0e9480317dbb5b8003535a769f4a03bc720d5f5f:/rsync.h diff --git a/rsync.h b/rsync.h index 01d8ccd8..a8325d0c 100644 --- a/rsync.h +++ b/rsync.h @@ -303,8 +303,8 @@ enum logcode {FNONE=0, FERROR=1, FINFO=2, FLOG=3 }; * cope with platforms on which this is an unsigned int or even a * struct. Later. */ -#define INO64_T int64 -#define DEV64_T int64 +#define INO64_T unsigned int64 +#define DEV64_T unsigned int64 #ifndef MIN #define MIN(a,b) ((a)<(b)?(a):(b))