aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-dcerpc.c
diff options
context:
space:
mode:
authorUlf Lamping <ulf.lamping@web.de>2005-09-20 08:55:50 +0000
committerUlf Lamping <ulf.lamping@web.de>2005-09-20 08:55:50 +0000
commite8dd2e92792e155d03e1635e5ed970c1ca017286 (patch)
treec5abb38ca267c805aaed7fd2b08e7aaab5685298 /epan/dissectors/packet-dcerpc.c
parent831c54c4f5b15e8d8fce18bd6f6d08974d689d56 (diff)
fix: packet-dcerpc.c(4019) : warning C4018: '<' : signed/unsigned mismatch
svn path=/trunk/; revision=15892
Diffstat (limited to 'epan/dissectors/packet-dcerpc.c')
-rw-r--r--epan/dissectors/packet-dcerpc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-dcerpc.c b/epan/dissectors/packet-dcerpc.c
index 7b37127fad..16d01edd2d 100644
--- a/epan/dissectors/packet-dcerpc.c
+++ b/epan/dissectors/packet-dcerpc.c
@@ -4016,7 +4016,7 @@ dissect_dcerpc_cn (tvbuff_t *tvb, int offset, packet_info *pinfo,
* offset otherwise.
*/
fragment_tvb = tvb_new_subset(tvb, 0,
- MIN((hdr.frag_len + start_offset),tvb_length(tvb)) /* length */,
+ MIN((hdr.frag_len + (guint) start_offset), tvb_length(tvb)) /* length */,
hdr.frag_len + start_offset /* reported_length */);
/*