From 3925411de4067cc1c203b27cfb082bc693a13def Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Sat, 17 Jul 2010 20:20:14 +0200 Subject: s3: Really fix the 64-bit warnings Hmm. Forgot to git commit this piece, sorry :-( --- source3/rpc_client/cli_pipe.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- cgit