From: Luke Leighton Date: Thu, 25 Mar 1999 21:01:08 +0000 (+0000) Subject: SMB_BIG_INT dir_total incompatible with %d: must use %llu (line 446) X-Git-Tag: samba-4.0.0alpha6~801^2~20835 X-Git-Url: http://git.samba.org/?p=samba.git;a=commitdiff_plain;h=754be76bde565cb855877071e4454930bea65aae SMB_BIG_INT dir_total incompatible with %d: must use %llu (line 446) (This used to be commit 1cece2124601fad6f5f9e3e16c4b0848ec9be249) --- diff --git a/source3/client/client.c b/source3/client/client.c index a4bcd462b11..f42a3271224 100644 --- a/source3/client/client.c +++ b/source3/client/client.c @@ -463,7 +463,7 @@ static void cmd_du(void) do_dskattr(); - DEBUG(0, ("Total number of bytes: %d\n", dir_total)); + DEBUG(0, ("Total number of bytes: %llu\n", dir_total)); }