aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-ff.c
diff options
context:
space:
mode:
authorsfisher <sfisher@f5534014-38df-0310-8fa8-9805f1628bb7>2008-01-12 06:38:09 +0000
committersfisher <sfisher@f5534014-38df-0310-8fa8-9805f1628bb7>2008-01-12 06:38:09 +0000
commit0307d5e03258a88a87dfb450e9adcc0f2715e676 (patch)
treeff8b5f5673c09ccf4eb2be54453e6ad5b794d3d9 /epan/dissectors/packet-ff.c
parentf92bc9adce718b741a786c0b6d7b882162a3865e (diff)
Fix Windows warning/error: integral size mismatch
Then fix comparison of signed/unsigned warning/error git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@24070 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/dissectors/packet-ff.c')
-rw-r--r--epan/dissectors/packet-ff.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/epan/dissectors/packet-ff.c b/epan/dissectors/packet-ff.c
index 991330747e..906eef16d7 100644
--- a/epan/dissectors/packet-ff.c
+++ b/epan/dissectors/packet-ff.c
@@ -2495,11 +2495,11 @@ dissect_ff_msg_sm_id_rsp_h1_node_addr(tvbuff_t *tvb,
static void
dissect_ff_msg_sm_id_rsp_entries_node_addr(tvbuff_t *tvb,
- gint offset, proto_tree *tree, guint16 value)
+ gint offset, proto_tree *tree, guint32 value)
{
proto_tree *sub_tree = NULL;
proto_item *ti = NULL;
- gint d = 0;
+ guint d = 0;
if(!tree) {
return;
@@ -2563,7 +2563,7 @@ dissect_ff_msg_sm_id_rsp_h1_live_list(tvbuff_t *tvb,
static void
dissect_ff_msg_sm_id_rsp_entries_link_id(tvbuff_t *tvb,
- gint offset, proto_tree *tree, guint16 value)
+ gint offset, proto_tree *tree, guint32 value)
{
proto_tree *sub_tree = NULL;
proto_item *ti = NULL;
@@ -3701,11 +3701,11 @@ dissect_ff_msg_sm_dev_annunc_req_h1_node_addr(tvbuff_t *tvb,
static void
dissect_ff_msg_sm_dev_annunc_req_entries_node_addr(tvbuff_t *tvb,
- gint offset, proto_tree *tree, guint16 value)
+ gint offset, proto_tree *tree, guint32 value)
{
proto_tree *sub_tree = NULL;
proto_item *ti = NULL;
- gint d = 0;
+ guint d = 0;
if(!tree) {
return;
@@ -3769,7 +3769,7 @@ dissect_ff_msg_sm_dev_annunc_req_h1_live_list(tvbuff_t *tvb,
static void
dissect_ff_msg_sm_dev_annunc_req_entries_link_id(tvbuff_t *tvb,
- gint offset, proto_tree *tree, guint16 value)
+ gint offset, proto_tree *tree, guint32 value)
{
proto_tree *sub_tree = NULL;
proto_item *ti = NULL;