diff options
author | Volker Lendecke <vl@samba.org> | 2010-07-17 17:20:03 +0200 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2010-07-17 19:58:21 +0200 |
commit | 32fd6e3c252d7c63252c5e8bbf39dcd52865d839 (patch) | |
tree | 4f278d5fd57d782e58ad2097723e79dab87e9197 /source3/rpc_client | |
parent | a7e6b2aeb4a5ae3bf575c14bf866544b975d5f0b (diff) | |
download | samba-32fd6e3c252d7c63252c5e8bbf39dcd52865d839.tar.gz samba-32fd6e3c252d7c63252c5e8bbf39dcd52865d839.tar.bz2 samba-32fd6e3c252d7c63252c5e8bbf39dcd52865d839.zip |
s3: Fix some 64-bit warnings
Diffstat (limited to 'source3/rpc_client')
-rw-r--r-- | source3/rpc_client/cli_pipe.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/source3/rpc_client/cli_pipe.c b/source3/rpc_client/cli_pipe.c index b1f893f4f8..9a1aba7b0d 100644 --- a/source3/rpc_client/cli_pipe.c +++ b/source3/rpc_client/cli_pipe.c @@ -976,7 +976,9 @@ static NTSTATUS cli_pipe_validate_current_pdu(TALLOC_CTX *mem_ctx, } DEBUG(10, ("Got pdu len %lu, data_len %lu, ss_len %u\n", - pdu->length, rdata->length, ss_padding_len)); + (long unsigned int)pdu->length, + (long unsigned int)rdata->length, + (long unsigned int)ss_padding_len)); /* * If this is the first reply, and the allocation hint is |