aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-ctdb.c
diff options
context:
space:
mode:
authorJaap Keuter <jaap.keuter@xs4all.nl>2007-05-02 18:42:53 +0000
committerJaap Keuter <jaap.keuter@xs4all.nl>2007-05-02 18:42:53 +0000
commite51904c765195f6fcbf53085d1090f7082dced03 (patch)
tree6118e005cdff2b31e4f66bbc7f8b3bdeb7458bd4 /epan/dissectors/packet-ctdb.c
parent5834873aa7fa6cf2f825dc3efcbd09e24f664936 (diff)
Fix the windows build by changing uint32_t into guint32.
svn path=/trunk/; revision=21648
Diffstat (limited to 'epan/dissectors/packet-ctdb.c')
-rw-r--r--epan/dissectors/packet-ctdb.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-ctdb.c b/epan/dissectors/packet-ctdb.c
index 57934f9281..81a8db635e 100644
--- a/epan/dissectors/packet-ctdb.c
+++ b/epan/dissectors/packet-ctdb.c
@@ -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);