summaryrefslogtreecommitdiff
path: root/epan/dissectors/packet-asterix.c
diff options
context:
space:
mode:
authorBill Meier <wmeier@newsguy.com>2013-12-22 14:47:16 +0000
committerBill Meier <wmeier@newsguy.com>2013-12-22 14:47:16 +0000
commitc00f8779f5f78e1350837ea8dc6164a91fb903cc (patch)
treeb903a3b92c131fe4f2d78ae2be479c86f17486a7 /epan/dissectors/packet-asterix.c
parent400a1fcd60c311340788008fdc81484ed1910963 (diff)
downloadwireshark-c00f8779f5f78e1350837ea8dc6164a91fb903cc.tar.gz
Don't use 'L' as a constant modifier.
svn path=/trunk/; revision=54358
Diffstat (limited to 'epan/dissectors/packet-asterix.c')
-rw-r--r--epan/dissectors/packet-asterix.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-asterix.c b/epan/dissectors/packet-asterix.c
index dfa2bbe72e..51d02824e9 100644
--- a/epan/dissectors/packet-asterix.c
+++ b/epan/dissectors/packet-asterix.c
@@ -4756,7 +4756,7 @@ static void asterix_build_subtree (tvbuff_t *tvb, guint offset, proto_tree *pare
if (field->part != NULL) {
for (i = 0, inner_offset = 0, go_on = 1; go_on && field->part[i] != NULL; i++) {
- value = 0L;
+ value = G_GINT64_CONSTANT(0);;
value = tvb_get_bits64 (tvb, offset * 8 + inner_offset, field->part[i]->bit_length, ENC_BIG_ENDIAN);
if (field->part[i]->hf != NULL) {
switch (field->part[i]->type) {