svn commit: samba r6675 - in branches/SAMBA_4_0/source/torture/raw: .

tpot at samba.org tpot at samba.org
Mon May 9 02:29:23 GMT 2005


Author: tpot
Date: 2005-05-09 02:29:22 +0000 (Mon, 09 May 2005)
New Revision: 6675

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

Log:
Fix printf warning.

Modified:
   branches/SAMBA_4_0/source/torture/raw/lock.c


Changeset:
Modified: branches/SAMBA_4_0/source/torture/raw/lock.c
===================================================================
--- branches/SAMBA_4_0/source/torture/raw/lock.c	2005-05-09 02:28:27 UTC (rev 6674)
+++ branches/SAMBA_4_0/source/torture/raw/lock.c	2005-05-09 02:29:22 UTC (rev 6675)
@@ -549,7 +549,7 @@
 
 	if (time(NULL) > t+2) {
 		printf("lock cancel by unlock was not immediate (%s) - took %d secs\n", 
-		       __location__, (int)time(NULL)-t);
+		       __location__, (int)(time(NULL)-t));
 		ret = False;
 		goto done;
 	}



More information about the samba-cvs mailing list