aboutsummaryrefslogtreecommitdiffstats
path: root/epan
diff options
context:
space:
mode:
authorstig <stig@f5534014-38df-0310-8fa8-9805f1628bb7>2009-10-01 15:03:02 +0000
committerstig <stig@f5534014-38df-0310-8fa8-9805f1628bb7>2009-10-01 15:03:02 +0000
commit25311b987199c7458aca16253d09cf1f7e56a725 (patch)
tree83b8d638a56be66e902144644b748607e9a7707e /epan
parente6e2b2a9e9bd6ac9f3299031891b7d8b33d431b5 (diff)
Added a cast to avoid another warning.
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@30237 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan')
-rw-r--r--epan/req_resp_hdrs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/req_resp_hdrs.c b/epan/req_resp_hdrs.c
index eda4319830..787371921a 100644
--- a/epan/req_resp_hdrs.c
+++ b/epan/req_resp_hdrs.c
@@ -331,7 +331,7 @@ req_resp_hdrs_do_reassembly(tvbuff_t *tvb, const int offset, packet_info *pinfo,
* already have it
*/
if (reported_length_remaining >
- chunk_size) {
+ (gint) chunk_size) {
next_offset = chunk_offset
+ chunk_size + 2;