summaryrefslogtreecommitdiff
path: root/source3/locking/locking.c
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2011-12-25 11:35:07 +0100
committerVolker Lendecke <vl@samba.org>2011-12-25 13:31:58 +0100
commit2b75e877fb85f212f5250acb026505a7c7b1fc0c (patch)
tree5b30b610fc106e05629ea5242da1c00ea27511bf /source3/locking/locking.c
parent1fbc8c2186642564a19205b2d07b3d7190cfdadd (diff)
downloadsamba-2b75e877fb85f212f5250acb026505a7c7b1fc0c.tar.gz
samba-2b75e877fb85f212f5250acb026505a7c7b1fc0c.tar.bz2
samba-2b75e877fb85f212f5250acb026505a7c7b1fc0c.zip
s3: Fix a 64-bit warning
Diffstat (limited to 'source3/locking/locking.c')
-rw-r--r--source3/locking/locking.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/locking/locking.c b/source3/locking/locking.c
index 45c2ce9f40..0c457b7a33 100644
--- a/source3/locking/locking.c
+++ b/source3/locking/locking.c
@@ -497,7 +497,7 @@ char *share_mode_str(TALLOC_CTX *ctx, int num, const struct share_mode_entry *e)
{
return talloc_asprintf(ctx, "share_mode_entry[%d]: "
"pid = %s, share_access = 0x%x, private_options = 0x%x, "
- "access_mask = 0x%x, mid = 0x%llx, type= 0x%x, gen_id = %lu, "
+ "access_mask = 0x%x, mid = 0x%llx, type= 0x%x, gen_id = %llu, "
"uid = %u, flags = %u, file_id %s, name_hash = 0x%x",
num,
procid_str_static(&e->pid),