mirror of
https://github.com/RsyncProject/rsync.git
synced 2026-03-18 22:37:49 -04:00
DEV64_t and INO64_T should probably be unsigned
This commit is contained in:
4
rsync.h
4
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))
|
||||
|
||||
Reference in New Issue
Block a user