aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-fix.c
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2009-05-26 04:32:51 +0000
committerGerald Combs <gerald@wireshark.org>2009-05-26 04:32:51 +0000
commit9f6f7c5239ea7dfc2b749d20fb42cad00d1128d2 (patch)
treeea6413c7e059024bc77264b3fba821c20d42158b /epan/dissectors/packet-fix.c
parenta41b956b321e3d5f0226519e42a9223b532b5a15 (diff)
Add a cast for Win64.
svn path=/trunk/; revision=28480
Diffstat (limited to 'epan/dissectors/packet-fix.c')
-rw-r--r--epan/dissectors/packet-fix.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-fix.c b/epan/dissectors/packet-fix.c
index 8baab0ccbb..6c5aae9a70 100644
--- a/epan/dissectors/packet-fix.c
+++ b/epan/dissectors/packet-fix.c
@@ -122,7 +122,7 @@ static int fix_next_header(tvbuff_t *tvb, int offset)
const guint8 *start = data;
while ((start = strstr(start, "\0018"))) {
- min_len = start +1 -data;
+ min_len = (guint) (start +1 -data);
/* if remaining length < 6 return and let the next desegment round
test for 8=FIX
*/