diff options
author | Wayne Davison <wayned@samba.org> | 2004-04-17 17:07:23 +0000 |
---|---|---|
committer | Wayne Davison <wayned@samba.org> | 2004-04-17 17:07:23 +0000 |
commit | 5f3812681730713d0616badec608f632ebacb2ed (patch) | |
tree | d85b622d843bc5c414d8046117e16802cddfffdb /options.c | |
parent | b05b3c9b4846b705b15b98b2c29d5d4364de5139 (diff) | |
download | rsync-5f3812681730713d0616badec608f632ebacb2ed.tar.gz rsync-5f3812681730713d0616badec608f632ebacb2ed.tar.bz2 rsync-5f3812681730713d0616badec608f632ebacb2ed.zip |
Use "uint64" instead of INO64_T (which is now gone).
Diffstat (limited to 'options.c')
-rw-r--r-- | options.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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()); |