X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/e420b9d85485a0c136da4f28972cdbd88fffc3d0..7d91d5a619207c60d5c5d9695d01867208057b68:/rsync.h diff --git a/rsync.h b/rsync.h index cb138be2..e5b50382 100644 --- a/rsync.h +++ b/rsync.h @@ -256,9 +256,11 @@ enum logcode {FNONE=0, FERROR=1, FINFO=2, FLOG=3 }; #endif #if HAVE_SHORT_INO_T -#define INO_T uint32 +# define INO_T uint32 +#elif HAVE_INO_T +# define INO_T ino_t #else -#define INO_T ino_t +# define INO_T unsigned #endif #ifndef MIN