aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-ltp.c
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2010-02-20 18:36:01 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2010-02-20 18:36:01 +0000
commitad0754f50fc66950e53a63ab203f7eed819b4dea (patch)
tree0e7da29555caf67cb8cfec7bba0bb60dfcc55d26 /epan/dissectors/packet-ltp.c
parent285771cf9b6aa0c66066c946c4a2ecc8988aaac7 (diff)
Cast away some implicit-narrowing-conversion warnings.
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@31935 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/dissectors/packet-ltp.c')
-rw-r--r--epan/dissectors/packet-ltp.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/epan/dissectors/packet-ltp.c b/epan/dissectors/packet-ltp.c
index 45e297c264..1c9e686f3c 100644
--- a/epan/dissectors/packet-ltp.c
+++ b/epan/dissectors/packet-ltp.c
@@ -303,14 +303,14 @@ dissect_data_segment(proto_tree *ltp_tree, tvbuff_t *tvb,packet_info *pinfo,int
frame_offset += rpt_sno_size;
more_frags = FALSE;
- frag_msg = fragment_add_check(tvb, frame_offset, pinfo, session_num, ltp_fragment_table,
- ltp_reassembled_table, offset,length, more_frags);
+ frag_msg = fragment_add_check(tvb, frame_offset, pinfo, (guint32)session_num, ltp_fragment_table,
+ ltp_reassembled_table, (guint32)offset, (guint32)length, more_frags);
}
else
{
more_frags = TRUE;
- frag_msg = fragment_add_check(tvb, frame_offset, pinfo, session_num, ltp_fragment_table,
- ltp_reassembled_table, offset,length, more_frags);
+ frag_msg = fragment_add_check(tvb, frame_offset, pinfo, (guint32)session_num, ltp_fragment_table,
+ ltp_reassembled_table, (guint32)offset, (guint32)length, more_frags);
}