aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-pop.c
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2009-04-06 19:30:48 +0000
committerGerald Combs <gerald@wireshark.org>2009-04-06 19:30:48 +0000
commit4403f89243327c0c6aee7716f7ac86658cb2d123 (patch)
tree0c9dcac5073b4ae0793dab6655bd58658cf519c9 /epan/dissectors/packet-pop.c
parent8ecf45961110d5783b7c99715b7c7cf05c5b41ed (diff)
More size_t fixes.
svn path=/trunk/; revision=27976
Diffstat (limited to 'epan/dissectors/packet-pop.c')
-rw-r--r--epan/dissectors/packet-pop.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-pop.c b/epan/dissectors/packet-pop.c
index 6bf649d70e..42dd5317a5 100644
--- a/epan/dissectors/packet-pop.c
+++ b/epan/dissectors/packet-pop.c
@@ -309,8 +309,8 @@ dissect_pop(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
}
}
- offset += next_token - line;
- linelen -= next_token - line;
+ offset += (gint) (next_token - line);
+ linelen -= (int) (next_token - line);
line = next_token;
}