svn commit: samba r11965 - in branches/SAMBA_4_0/source/torture/smb2: .

tpot at samba.org tpot at samba.org
Wed Nov 30 00:00:53 GMT 2005


Author: tpot
Date: 2005-11-30 00:00:53 +0000 (Wed, 30 Nov 2005)
New Revision: 11965

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

Log:
Try to fix some 64-bit warnings.

Modified:
   branches/SAMBA_4_0/source/torture/smb2/find.c


Changeset:
Modified: branches/SAMBA_4_0/source/torture/smb2/find.c
===================================================================
--- branches/SAMBA_4_0/source/torture/smb2/find.c	2005-11-29 23:40:01 UTC (rev 11964)
+++ branches/SAMBA_4_0/source/torture/smb2/find.c	2005-11-30 00:00:53 UTC (rev 11965)
@@ -47,7 +47,7 @@
 	if (io.all_info2.out.field != d->stype.field) { \
 		printf("(%s) %s/%s should be 0x%llx - 0x%llx\n", __location__, \
 		       #call_name, #field, \
-		       (uint64_t)io.all_info2.out.field, (uint64_t)d->stype.field); \
+		       (long long)io.all_info2.out.field, (long long)d->stype.field); \
 		ret = False; \
 	}} while (0)
 



More information about the samba-cvs mailing list