aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-per.c
diff options
context:
space:
mode:
authorBill Meier <wmeier@newsguy.com>2013-12-21 21:42:18 +0000
committerBill Meier <wmeier@newsguy.com>2013-12-21 21:42:18 +0000
commit026fae3855f650ba225dfd17c4ea80d9a84a6c94 (patch)
tree6826ca7c31ca53f082513886b9910e45d6b9a54c /epan/dissectors/packet-per.c
parentad0c90e2a937c01a26867ad683b8bd693006a7e1 (diff)
Don't use 'L' as a constant modifier.
svn path=/trunk/; revision=54343
Diffstat (limited to 'epan/dissectors/packet-per.c')
-rw-r--r--epan/dissectors/packet-per.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-per.c b/epan/dissectors/packet-per.c
index cdc5e449e9..01fa516c09 100644
--- a/epan/dissectors/packet-per.c
+++ b/epan/dissectors/packet-per.c
@@ -1915,7 +1915,7 @@ DEBUG_ENTRY("dissect_per_sequence");
guint32 extension_index;
guint32 k;
- if(!((1L<<(num_extensions-1-i))&extension_mask)){
+ if(!((1U<<(num_extensions-1-i))&extension_mask)){
/* this extension is not encoded in this PDU */
continue;
}