aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-synphasor.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2009-04-03 18:59:01 +0000
committerGuy Harris <guy@alum.mit.edu>2009-04-03 18:59:01 +0000
commit03af06a63f8bbbc6d96b46c894b4fb2088ad7f71 (patch)
treeee4a0cc8d2f9c3b4eacbc828d8b8d200a5405f1c /epan/dissectors/packet-synphasor.c
parentdd54a0cbbd2c7a62c254c70966b34ea71ee26aab (diff)
Turn length variables that don't need to be size_t into guint.
svn path=/trunk/; revision=27950
Diffstat (limited to 'epan/dissectors/packet-synphasor.c')
-rw-r--r--epan/dissectors/packet-synphasor.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-synphasor.c b/epan/dissectors/packet-synphasor.c
index b02036a15b..720ce1bab0 100644
--- a/epan/dissectors/packet-synphasor.c
+++ b/epan/dissectors/packet-synphasor.c
@@ -969,7 +969,7 @@ static gint dissect_PHASORS(tvbuff_t *tvb, proto_tree *tree, config_block *block
{
proto_item *temp_item = NULL;
proto_tree *phasor_tree = NULL;
- size_t length;
+ guint length;
gint j,
cnt = block->phasors->len; /* number of phasors to dissect */
@@ -1048,7 +1048,7 @@ static gint dissect_ANALOG(tvbuff_t *tvb, proto_tree *tree, config_block *block,
{
proto_tree *analog_tree = NULL;
proto_item *temp_item = NULL;
- size_t length;
+ guint length;
gint j,
cnt = block->analogs->len; /* number of analog values to dissect */