diff options
author | Volker Lendecke <vl@samba.org> | 2010-07-17 20:20:14 +0200 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2010-07-17 20:21:19 +0200 |
commit | 3925411de4067cc1c203b27cfb082bc693a13def (patch) | |
tree | fb6be6b0578f4b77d1282563dfdc895ed8a56fc8 | |
parent | 32fd6e3c252d7c63252c5e8bbf39dcd52865d839 (diff) | |
download | samba-3925411de4067cc1c203b27cfb082bc693a13def.tar.gz samba-3925411de4067cc1c203b27cfb082bc693a13def.tar.bz2 samba-3925411de4067cc1c203b27cfb082bc693a13def.zip |
s3: Really fix the 64-bit warnings
Hmm. Forgot to git commit this piece, sorry :-(
-rw-r--r-- | source3/rpc_client/cli_pipe.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/rpc_client/cli_pipe.c b/source3/rpc_client/cli_pipe.c index 9a1aba7b0d..c5f8930915 100644 --- a/source3/rpc_client/cli_pipe.c +++ b/source3/rpc_client/cli_pipe.c @@ -978,7 +978,7 @@ static NTSTATUS cli_pipe_validate_current_pdu(TALLOC_CTX *mem_ctx, DEBUG(10, ("Got pdu len %lu, data_len %lu, ss_len %u\n", (long unsigned int)pdu->length, (long unsigned int)rdata->length, - (long unsigned int)ss_padding_len)); + (unsigned int)ss_padding_len)); /* * If this is the first reply, and the allocation hint is |