summaryrefslogtreecommitdiff
path: root/source4/winbind/wb_samba3_protocol.c
diff options
context:
space:
mode:
authorTim Potter <tpot@samba.org>2005-11-30 03:20:25 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 13:46:52 -0500
commitb9b59fa7984c4f800c177a235a984e05d59f1ef8 (patch)
tree3a8a66d1e136b8fc65d1d7a261473e9102389a26 /source4/winbind/wb_samba3_protocol.c
parent03d301ead5f702872b8cb948b8cd01b0fa0db5f7 (diff)
downloadsamba-b9b59fa7984c4f800c177a235a984e05d59f1ef8.tar.gz
samba-b9b59fa7984c4f800c177a235a984e05d59f1ef8.tar.bz2
samba-b9b59fa7984c4f800c177a235a984e05d59f1ef8.zip
r11968: More warning fixes. We're on track to getting to double digits for
the number of warnings generated now. (This used to be commit d479f2d7607adc698d71c5ba26932c72a26dcaab)
Diffstat (limited to 'source4/winbind/wb_samba3_protocol.c')
-rw-r--r--source4/winbind/wb_samba3_protocol.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/winbind/wb_samba3_protocol.c b/source4/winbind/wb_samba3_protocol.c
index 479920bf97..d335e1f74d 100644
--- a/source4/winbind/wb_samba3_protocol.c
+++ b/source4/winbind/wb_samba3_protocol.c
@@ -40,9 +40,9 @@ NTSTATUS wbsrv_samba3_pull_request(DATA_BLOB blob, TALLOC_CTX *mem_ctx,
struct wbsrv_samba3_call *s3_call;
if (blob.length != sizeof(s3_call->request)) {
- DEBUG(0,("wbsrv_samba3_pull_request: invalid blob length %u should be %u\n"
+ DEBUG(0,("wbsrv_samba3_pull_request: invalid blob length %lu should be %lu\n"
" make sure you use the correct winbind client tools!\n",
- blob.length, sizeof(s3_call->request)));
+ (long)blob.length, (long)sizeof(s3_call->request)));
return NT_STATUS_INVALID_PARAMETER;
}