From 574095b9604d8e61b531d61343e1f2719767f50d Mon Sep 17 00:00:00 2001 From: Ronnie Sahlberg Date: Thu, 5 Jul 2012 07:12:11 +1000 Subject: [PATCH] Change a size variable from uint64 to uint32 to squelch a warning --- lib/pdu.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/pdu.c b/lib/pdu.c index 1a9547f..597b44c 100644 --- a/lib/pdu.c +++ b/lib/pdu.c @@ -237,7 +237,7 @@ int rpc_process_pdu(struct rpc_context *rpc, char *buf, int size) /* reassembly */ if (recordmarker != 0 && rpc->fragments != NULL) { struct rpc_fragment *fragment; - uint64_t total = size - 4; + uint32_t total = size - 4; char *ptr; zdr_destroy(&zdr); -- 2.34.1