aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-m2ua.c
diff options
context:
space:
mode:
authorStig Bjørlykke <stig@bjorlykke.org>2009-09-09 14:11:10 +0000
committerStig Bjørlykke <stig@bjorlykke.org>2009-09-09 14:11:10 +0000
commitae806f51fd0771b156ef07ec753a6524b8adbca2 (patch)
tree65be3c00abfdf6b5e6dcddf409433c36bee5f3ad /epan/dissectors/packet-m2ua.c
parent2547ce21bfe68ef54fbf09a8aa41b1b52a3d240d (diff)
Fixed data type signedness for protocol_data_1_global.
svn path=/trunk/; revision=29822
Diffstat (limited to 'epan/dissectors/packet-m2ua.c')
-rw-r--r--epan/dissectors/packet-m2ua.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-m2ua.c b/epan/dissectors/packet-m2ua.c
index fd94619333..ac22733ea0 100644
--- a/epan/dissectors/packet-m2ua.c
+++ b/epan/dissectors/packet-m2ua.c
@@ -876,7 +876,7 @@ static const value_string parameter_tag_values[] = {
* The other option is the old Draft 7 value defined below.
*/
#define PROTOCOL_DATA_1_DRAFT_7 0x000e
-static guint protocol_data_1_global = PROTOCOL_DATA_1_PARAMETER_TAG;
+static gint protocol_data_1_global = PROTOCOL_DATA_1_PARAMETER_TAG;
static void
dissect_parameter(tvbuff_t *parameter_tvb, packet_info *pinfo, proto_tree *tree, proto_tree *m2ua_tree)