From: Ronnie Sahlberg Date: Wed, 4 Jul 2012 21:12:11 +0000 (+1000) Subject: Change a size variable from uint64 to uint32 to squelch a warning X-Git-Tag: upstream/1.9.6^2~242^2~20 X-Git-Url: https://git.piment-noir.org/?a=commitdiff_plain;h=574095b9604d8e61b531d61343e1f2719767f50d;p=deb_libnfs.git Change a size variable from uint64 to uint32 to squelch a warning --- 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);