aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors
diff options
context:
space:
mode:
authorStig Bjørlykke <stig@bjorlykke.org>2012-11-06 08:42:48 +0000
committerStig Bjørlykke <stig@bjorlykke.org>2012-11-06 08:42:48 +0000
commit192372726b69d9c2dc4553285ff3d4df3312fa1e (patch)
tree1b8d5f4fc9dd16971332076cfa158b5187f046e4 /epan/dissectors
parent1e355c77d36769cf55f2698006feca68581b1b5c (diff)
Corrected a (guint32) cast
svn path=/trunk/; revision=45944
Diffstat (limited to 'epan/dissectors')
-rw-r--r--epan/dissectors/packet-gtpv2.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-gtpv2.c b/epan/dissectors/packet-gtpv2.c
index 2a29191299..f54411398c 100644
--- a/epan/dissectors/packet-gtpv2.c
+++ b/epan/dissectors/packet-gtpv2.c
@@ -3494,7 +3494,7 @@ dissect_gtpv2_mm_context_utms_qq(tvbuff_t *tvb, packet_info *pinfo _U_, proto_tr
offset = dissect_gtpv2_mm_context_common_data(tvb, pinfo, tree, offset, samb_ri, uamb_ri);
/* r+1 Spare HNNA ENA INA GANA GENA UNA */
- if (offset < (gint)length){
+ if (offset < (guint32)length){
offset = dissect_gtpv2_access_restriction_data(tvb, tree, offset);
}else{
return;