aboutsummaryrefslogtreecommitdiffstats
path: root/epan
diff options
context:
space:
mode:
authorPascal Quantin <pascal.quantin@gmail.com>2013-12-08 18:46:38 +0000
committerPascal Quantin <pascal.quantin@gmail.com>2013-12-08 18:46:38 +0000
commitfab9e520551ed2b92d85a7676ed67caf64f41f6b (patch)
treec7b8624d1a343ad8f28c94ee951a44e944021654 /epan
parent5db045212e7dd63dc4a61477de9dca3996a456b1 (diff)
Try to please OSX-10.5-x86 buildbot
svn path=/trunk/; revision=53863
Diffstat (limited to 'epan')
-rw-r--r--epan/dissectors/packet-rlc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-rlc.c b/epan/dissectors/packet-rlc.c
index 76f0aa2190..da4ec3dec5 100644
--- a/epan/dissectors/packet-rlc.c
+++ b/epan/dissectors/packet-rlc.c
@@ -1647,7 +1647,7 @@ rlc_um_reassemble(tvbuff_t *tvb, guint8 offs, packet_info *pinfo, proto_tree *tr
struct rlc_seqlist * endlist = NULL;
if( -1 != rlc_channel_assign(&ch_lookup, RLC_UM, pinfo ) ){
endlist = get_endlist(pinfo, &ch_lookup);
- endlist->list->data = GINT_TO_POINTER(seq);
+ endlist->list->data = GINT_TO_POINTER((gint)seq);
endlist->fail_packet=0;
}