r13091: Fix gcc warning about using '0' with %s.
authorJeremy Allison <jra@samba.org>
Mon, 23 Jan 2006 21:57:58 +0000 (21:57 +0000)
committerGerald (Jerry) Carter <jerry@samba.org>
Wed, 10 Oct 2007 16:06:13 +0000 (11:06 -0500)
Jeremy.
(This used to be commit 5f5f87584fec7fdeefeb54de0cb72ae5b1ac9dd4)

source3/utils/status.c

index b9f1c161e48ec5558c62d80a5ec1f271548b9657..eeaf83d17728975fd0b5da69e86d39e7f60e4f35 100644 (file)
@@ -166,7 +166,7 @@ static void print_brl(SMB_DEV_T dev, SMB_INO_T ino, struct process_id pid,
        }
        count++;
 
-       d_printf("%08s   %05x:%05x    %s  %9.0f   %9.0f\n", 
+       d_printf("%8s   %05x:%05x    %s  %9.0f   %9.0f\n", 
               procid_str_static(&pid), (int)dev, (int)ino, 
               lock_type==READ_LOCK?"R":"W",
               (double)start, (double)size);