Make xid be a uint32_t and not either unsigned long or unsigned int
[deb_libnfs.git] / include / libnfs-private.h
index 79ac411339668ffcb4e79d3edd00c95ed2b4f54c..328d79dc62720d45f2205bb61f9d1c3081fa0b30 100644 (file)
@@ -68,7 +68,7 @@ struct rpc_context {
        void *connect_data;
 
        struct AUTH *auth;
-       unsigned long xid;
+       uint32_t xid;
 
        /* buffer used for encoding RPC PDU */
        char *encodebuf;
@@ -98,7 +98,7 @@ struct rpc_context {
 struct rpc_pdu {
        struct rpc_pdu *next;
 
-       unsigned long xid;
+       uint32_t xid;
        ZDR zdr;
 
        uint32_t written;