diff options
Diffstat (limited to 'source4/winbind')
-rw-r--r-- | source4/winbind/wb_samba3_protocol.c | 4 |
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; } |