]> git.ipfire.org Git - thirdparty/rsync.git/commitdiff
Fix cast warning.
authorMartin Pool <mbp@samba.org>
Wed, 15 Aug 2001 08:52:10 +0000 (08:52 +0000)
committerMartin Pool <mbp@samba.org>
Wed, 15 Aug 2001 08:52:10 +0000 (08:52 +0000)
options.c

index 58b58de6e2610a8ff72b4789ea027d4140736a48..ec0fc70bcf6674e7cc33d288b584170aa21c5527 100644 (file)
--- a/options.c
+++ b/options.c
@@ -126,7 +126,7 @@ static void print_rsync_version(int f)
        rprintf(f, "<http://rsync.samba.org/>\n");
         rprintf(f, "Capabilities: %d-bit files, %ssocketpairs, "
                 "%shard links, %ssymlinks, batchfiles\n\n",
-                sizeof(int64) * 8,
+                (int) (sizeof(int64) * 8),
                 got_socketpair,
                 hardlinks, links);