Fix the windows build by changing uint32_t into guint32.
authorjake <jake@f5534014-38df-0310-8fa8-9805f1628bb7>
Wed, 2 May 2007 18:42:53 +0000 (18:42 +0000)
committerjake <jake@f5534014-38df-0310-8fa8-9805f1628bb7>
Wed, 2 May 2007 18:42:53 +0000 (18:42 +0000)
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@21648 f5534014-38df-0310-8fa8-9805f1628bb7

epan/dissectors/packet-ctdb.c

index 57934f9281d55fb740497c751f6aee21832f9179..81a8db635ee820f02a22c618c77a7ffe0e5f71a1 100644 (file)
@@ -222,7 +222,7 @@ dissect_ctdb_key(proto_tree *tree, tvbuff_t *tvb, int offset, guint32 keylen, gu
 static int
 dissect_ctdb_reply_call(tvbuff_t *tvb, int offset, packet_info *pinfo _U_, proto_tree *tree, int endianess)
 {
-       uint32_t datalen;
+       guint32 datalen;
 
        /* status */
        proto_tree_add_item(tree, hf_ctdb_status, tvb, offset, 4, endianess);
@@ -367,7 +367,7 @@ dissect_ctdb_req_dmaster(tvbuff_t *tvb, int offset, packet_info *pinfo _U_, prot
 static int
 dissect_ctdb_req_control(tvbuff_t *tvb, int offset, packet_info *pinfo _U_, proto_tree *tree, guint32 reqid _U_, int endianess)
 {
-       uint32_t datalen;
+       guint32 datalen;
 
        /* ctrl opcode */
        proto_tree_add_item(tree, hf_ctdb_ctrl_opcode, tvb, offset, 4, endianess);