Remove all [s]size_t / off_t and replace with [u]int64_t making libnfs 64-bit pure
[deb_libnfs.git] / lib / pdu.c
index 8cfae610b83c6819035537ce89518d5c65ec7c2a..276515e64ea5c5b6e2493965a4376d4d3254b2e0 100644 (file)
--- a/lib/pdu.c
+++ b/lib/pdu.c
@@ -235,7 +235,7 @@ int rpc_process_pdu(struct rpc_context *rpc, char *buf, int size)
        /* reassembly */
        if (recordmarker != 0 && rpc->fragments != NULL) {
                struct rpc_fragment *fragment;
-               size_t total = size - 4;
+               uint64_t total = size - 4;
                char *ptr;
 
                xdr_destroy(&xdr);