From: Wayne Davison Date: Sat, 17 Apr 2004 17:07:23 +0000 (+0000) Subject: Use "uint64" instead of INO64_T (which is now gone). X-Git-Tag: v2.6.1pre2~5 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5f3812681730713d0616badec608f632ebacb2ed;p=thirdparty%2Frsync.git Use "uint64" instead of INO64_T (which is now gone). --- diff --git a/options.c b/options.c index e848cd7f..b14ef1c8 100644 --- a/options.c +++ b/options.c @@ -183,7 +183,7 @@ static void print_rsync_version(enum logcode f) rprintf(f, " %sIPv6, %d-bit system inums, %d-bit internal inums\n", ipv6, (int) (sizeof dumstat->st_ino * 8), - (int) (sizeof (INO64_T) * 8)); + (int) (sizeof (uint64) * 8)); #ifdef MAINTAINER_MODE rprintf(f, " panic action: \"%s\"\n", get_panic_action());