X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/81c652d5d28efcc9bd9c69173305dc237b85c9d4..d27cbec598136ff8ff767ebbfb5d9d39e0b7c03e:/rsync.h diff --git a/rsync.h b/rsync.h index bb459072..fb7f333a 100644 --- a/rsync.h +++ b/rsync.h @@ -301,8 +301,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 unsigned int64 -#define DEV64_T unsigned int64 +#define INO64_T int64 +#define DEV64_T int64 #ifndef MIN #define MIN(a,b) ((a)<(b)?(a):(b))