From 1e19f7ba5fbe801ab2dcc2c48f3b34834542ea84 Mon Sep 17 00:00:00 2001 From: Martin Pool Date: Wed, 13 Feb 2002 02:57:55 +0000 Subject: [PATCH] At least change INO64_T and DEV64_T back to just 'int64', not 'unsigned int64'. This should fix some compile problems on machines where int64 is not a simple integer type, but I'm not convinced it is the ideal fix. --- rsync.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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)) -- 2.34.1