svn commit: samba r13090 - in trunk/source/utils: .

jra at samba.org jra at samba.org
Mon Jan 23 21:57:57 GMT 2006


Author: jra
Date: 2006-01-23 21:57:56 +0000 (Mon, 23 Jan 2006)
New Revision: 13090

WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=13090

Log:
Fix gcc warning about using '0' with %s.
Jeremy.

Modified:
   trunk/source/utils/status.c


Changeset:
Modified: trunk/source/utils/status.c
===================================================================
--- trunk/source/utils/status.c	2006-01-23 21:57:36 UTC (rev 13089)
+++ trunk/source/utils/status.c	2006-01-23 21:57:56 UTC (rev 13090)
@@ -166,7 +166,7 @@
 	}
 	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);



More information about the samba-cvs mailing list