aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-jxta.c
diff options
context:
space:
mode:
authorBill Meier <wmeier@newsguy.com>2013-12-21 21:02:41 +0000
committerBill Meier <wmeier@newsguy.com>2013-12-21 21:02:41 +0000
commitad0c90e2a937c01a26867ad683b8bd693006a7e1 (patch)
tree165a240addc975b4326f3297aa6396594118817f /epan/dissectors/packet-jxta.c
parentaba3b9afed2461bbcfb9f41ab12ad623b0954868 (diff)
Use G_GINT64_CONSTANT(-1) instead of -1L.
svn path=/trunk/; revision=54342
Diffstat (limited to 'epan/dissectors/packet-jxta.c')
-rw-r--r--epan/dissectors/packet-jxta.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-jxta.c b/epan/dissectors/packet-jxta.c
index 63f9f3d0fb..ce62cecf4e 100644
--- a/epan/dissectors/packet-jxta.c
+++ b/epan/dissectors/packet-jxta.c
@@ -583,7 +583,7 @@ static int dissect_jxta_stream(tvbuff_t * tvb, packet_info * pinfo, proto_tree *
processed = dissect_jxta_welcome(tvb, pinfo, jxta_tree, welcome_addr, initiator);
} else {
/* Somewhere in the middle of a JXTA stream connection */
- gint64 content_length = -1L;
+ gint64 content_length = G_GINT64_CONSTANT(-1);
gchar *content_type = NULL;
gint headers_len = dissect_jxta_message_framing(tvb, pinfo, NULL, (guint64*) &content_length, &content_type);