aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEvan Huus <eapache@gmail.com>2013-11-14 13:07:53 +0000
committerEvan Huus <eapache@gmail.com>2013-11-14 13:07:53 +0000
commit2809240ead3af25b531ae3048b6e437dbf1ab004 (patch)
tree8b1a14229f415383764e2e245f4e3fbcdfc48018
parent488cf801a2679c6192a3b3b7bf829d6c25e6cd36 (diff)
Add a cast to try and fix the OSX buildbot.
svn path=/trunk/; revision=53313
-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 c11833e709..1c32556350 100644
--- a/epan/dissectors/packet-dcerpc.c
+++ b/epan/dissectors/packet-dcerpc.c
@@ -4778,7 +4778,7 @@ dissect_dcerpc_cn_bs_body(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
* it was just too short to tell and ask the TCP layer for more
* data. */
pinfo->desegment_offset = offset;
- pinfo->desegment_len = sizeof(e_dce_cn_common_hdr_t) - tvb_length_remaining(tvb, offset);
+ pinfo->desegment_len = (guint32)(sizeof(e_dce_cn_common_hdr_t) - tvb_length_remaining(tvb, offset));
} else {
/* Really not DCE-RPC */
break;