aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-ff.c
diff options
context:
space:
mode:
authorStephen Fisher <steve@stephen-fisher.com>2008-01-12 06:38:09 +0000
committerStephen Fisher <steve@stephen-fisher.com>2008-01-12 06:38:09 +0000
commitaee504c8f566bf2aa9c971f7725469f0866adaab (patch)
treeff8b5f5673c09ccf4eb2be54453e6ad5b794d3d9 /epan/dissectors/packet-ff.c
parent432354c001d931ad69e2094030472dad7d640492 (diff)
Fix Windows warning/error: integral size mismatch
Then fix comparison of signed/unsigned warning/error svn path=/trunk/; revision=24070
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;