aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorMartin Mathieson <martin.r.mathieson@googlemail.com>2007-09-06 14:14:09 +0000
committerMartin Mathieson <martin.r.mathieson@googlemail.com>2007-09-06 14:14:09 +0000
commit400f998e3b5033ec6137fe5c96431ff9d2143e09 (patch)
tree5284d39bf55eea57c96d75777c1f5025d0691ef0 /plugins
parenta072f5e8105957ff896ab9d0b4b5f193ca1c9ece (diff)
Fix the unsigned errors. Not sure about the other windows errors yet...
svn path=/trunk/; revision=22806
Diffstat (limited to 'plugins')
-rw-r--r--plugins/wimaxasncp/packet-wimaxasncp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/wimaxasncp/packet-wimaxasncp.c b/plugins/wimaxasncp/packet-wimaxasncp.c
index cb77438d4f..f363bae411 100644
--- a/plugins/wimaxasncp/packet-wimaxasncp.c
+++ b/plugins/wimaxasncp/packet-wimaxasncp.c
@@ -2638,7 +2638,7 @@ static void wimaxasncp_dissect_tlv_value(
{
proto_tree *protocol_list_tree;
proto_item *item;
- const gint max_protocols_in_tlv_item = 8; /* arbitrary */
+ const guint max_protocols_in_tlv_item = 8; /* arbitrary */
item = proto_tree_add_text(
tree, tvb, offset, length,
@@ -2691,7 +2691,7 @@ static void wimaxasncp_dissect_tlv_value(
{
proto_tree *port_range_list_tree;
proto_item *item;
- const gint max_port_ranges_in_tlv_item = 3; /* arbitrary */
+ const guint max_port_ranges_in_tlv_item = 3; /* arbitrary */
item = proto_tree_add_text(
tree, tvb, offset, length,