aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-lppe.c
diff options
context:
space:
mode:
authorPascal Quantin <pascal.quantin@gmail.com>2012-07-17 13:12:50 +0000
committerPascal Quantin <pascal.quantin@gmail.com>2012-07-17 13:12:50 +0000
commitbabe6229874376888afd728250e389c855d761a4 (patch)
tree1963676cb222265edccef8b3928aabb53b459e17 /epan/dissectors/packet-lppe.c
parenta8016f6a57056e5af2304d8216b97841f945bef7 (diff)
Use G_MININT32 instead of -2^31 so as to get rid of 'this decimal constant is unsigned only in ISO C90' warning
svn path=/trunk/; revision=43764
Diffstat (limited to 'epan/dissectors/packet-lppe.c')
-rw-r--r--epan/dissectors/packet-lppe.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-lppe.c b/epan/dissectors/packet-lppe.c
index 7ababad168..db7f69abc3 100644
--- a/epan/dissectors/packet-lppe.c
+++ b/epan/dissectors/packet-lppe.c
@@ -4496,7 +4496,7 @@ dissect_lppe_OMA_LPPe_AGNSS_SolarRadiationReq(tvbuff_t *tvb _U_, int offset _U_,
static int
dissect_lppe_INTEGER_M2147483648_2147483647(tvbuff_t *tvb _U_, int offset _U_, asn1_ctx_t *actx _U_, proto_tree *tree _U_, int hf_index _U_) {
offset = dissect_per_constrained_integer(tvb, offset, actx, tree, hf_index,
- -2147483648, 2147483647U, NULL, FALSE);
+ G_MININT32, 2147483647U, NULL, FALSE);
return offset;
}