At least change INO64_T and DEV64_T back to just 'int64', not
[rsync/rsync.git] / rsync.h
diff --git a/rsync.h b/rsync.h
index bb45907..fb7f333 100644 (file)
--- 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))