diff options
author | Jeremy Allison <jra@samba.org> | 2006-01-23 21:57:58 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 11:06:13 -0500 |
commit | bdc6f05af5419d7ade6d944789abcd0abc4a4ebd (patch) | |
tree | 973743cd4a3693c8af63a29c56dbe4f3e68f3e9b | |
parent | be7fb35eff7a2daadbdf8712aef69dff6e5f5463 (diff) | |
download | samba-bdc6f05af5419d7ade6d944789abcd0abc4a4ebd.tar.gz samba-bdc6f05af5419d7ade6d944789abcd0abc4a4ebd.tar.bz2 samba-bdc6f05af5419d7ade6d944789abcd0abc4a4ebd.zip |
r13091: Fix gcc warning about using '0' with %s.
Jeremy.
(This used to be commit 5f5f87584fec7fdeefeb54de0cb72ae5b1ac9dd4)
-rw-r--r-- | source3/utils/status.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/utils/status.c b/source3/utils/status.c index b9f1c161e4..eeaf83d177 100644 --- a/source3/utils/status.c +++ b/source3/utils/status.c @@ -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); |