summaryrefslogtreecommitdiff
path: root/source3/utils
diff options
context:
space:
mode:
authorVolker Lendecke <vlendec@samba.org>2007-01-03 06:39:18 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 12:16:53 -0500
commit8cc702bf5aeb0bedf012affb0c476cfc5f3dfa80 (patch)
tree3340b9bfce3305483255e8b0b535eca0c4e9f2ff /source3/utils
parent9985f25f0031cb1c91fd99cddf6f80bdf66b4dad (diff)
downloadsamba-8cc702bf5aeb0bedf012affb0c476cfc5f3dfa80.tar.gz
samba-8cc702bf5aeb0bedf012affb0c476cfc5f3dfa80.tar.bz2
samba-8cc702bf5aeb0bedf012affb0c476cfc5f3dfa80.zip
r20498: Two 64-bit warnings
(This used to be commit 382827ebac61646ec31fe1d56ccde2ea337e8f9e)
Diffstat (limited to 'source3/utils')
-rw-r--r--source3/utils/net_rpc_registry.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/utils/net_rpc_registry.c b/source3/utils/net_rpc_registry.c
index ea160b201c..e63471f176 100644
--- a/source3/utils/net_rpc_registry.c
+++ b/source3/utils/net_rpc_registry.c
@@ -661,7 +661,7 @@ static NTSTATUS rpc_registry_enumerate_internal(const DOM_SID *domain_sid,
}
case REG_BINARY:
d_printf("Value = %d bytes\n",
- v->v.binary.length);
+ (int)v->v.binary.length);
break;
default:
d_printf("Value = <unprintable>\n");