svn commit: samba r18888 - in branches/SAMBA_3_0/source/rpc_server: .

vlendec at samba.org vlendec at samba.org
Mon Sep 25 04:52:30 GMT 2006


Author: vlendec
Date: 2006-09-25 04:52:30 +0000 (Mon, 25 Sep 2006)
New Revision: 18888

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

Log:
Fix a 64-bit warning
Modified:
   branches/SAMBA_3_0/source/rpc_server/srv_unixinfo_nt.c


Changeset:
Modified: branches/SAMBA_3_0/source/rpc_server/srv_unixinfo_nt.c
===================================================================
--- branches/SAMBA_3_0/source/rpc_server/srv_unixinfo_nt.c	2006-09-25 04:43:23 UTC (rev 18887)
+++ branches/SAMBA_3_0/source/rpc_server/srv_unixinfo_nt.c	2006-09-25 04:52:30 UTC (rev 18888)
@@ -108,7 +108,8 @@
 		pw = getpwuid(uids[i]);
 
 		if (pw == NULL) {
-			DEBUG(10, ("Did not find uid %lld\n", uids[i]));
+			DEBUG(10, ("Did not find uid %lld\n",
+				   (long long int)uids[i]));
 			continue;
 		}
 



More information about the samba-cvs mailing list