X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/e420b9d85485a0c136da4f28972cdbd88fffc3d0..6f82f7a6f67bd9f5dd88bc3977c1f633405244f0:/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