Cast FILE_STRUCT_LEN & EXTRA_LEN to int for rprintf().
authorWayne Davison <wayned@samba.org>
Tue, 12 Dec 2006 20:42:06 +0000 (20:42 +0000)
committerWayne Davison <wayned@samba.org>
Tue, 12 Dec 2006 20:42:06 +0000 (20:42 +0000)
flist.c

diff --git a/flist.c b/flist.c
index 6497d34..35e5515 100644 (file)
--- a/flist.c
+++ b/flist.c
@@ -90,7 +90,7 @@ void init_flist(void)
 {
        if (verbose > 4) {
                rprintf(FINFO, "FILE_STRUCT_LEN=%d, EXTRA_LEN=%d\n",
-                       FILE_STRUCT_LEN, EXTRA_LEN);
+                       (int)FILE_STRUCT_LEN, (int)EXTRA_LEN);
        }
        checksum_len = protocol_version < 21 ? 2 : MD4_SUM_LENGTH;
 }