diff options
author | Volker Lendecke <vlendec@samba.org> | 2006-09-25 04:52:30 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:14:41 -0500 |
commit | 10a8d62e961eb779391d3d104e7b73ae1ce7ab00 (patch) | |
tree | 17c8fbc61493c9cfac0fa45b281c4c743525bfa3 | |
parent | 170ee35a6674468553b9c9e74072725afb80d0d1 (diff) | |
download | samba-10a8d62e961eb779391d3d104e7b73ae1ce7ab00.tar.gz samba-10a8d62e961eb779391d3d104e7b73ae1ce7ab00.tar.bz2 samba-10a8d62e961eb779391d3d104e7b73ae1ce7ab00.zip |
r18888: Fix a 64-bit warning
(This used to be commit 94b53f2f2abf7be003aebdb586b154dfda56d120)
-rw-r--r-- | source3/rpc_server/srv_unixinfo_nt.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source3/rpc_server/srv_unixinfo_nt.c b/source3/rpc_server/srv_unixinfo_nt.c index 321c6a6a5e..5dd5215ed0 100644 --- a/source3/rpc_server/srv_unixinfo_nt.c +++ b/source3/rpc_server/srv_unixinfo_nt.c @@ -108,7 +108,8 @@ NTSTATUS _unixinfo_GetPWUid(pipes_struct *p, uint32_t *count, uint64_t *uids, 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; } |