aboutsummaryrefslogtreecommitdiffstats
path: root/epan/follow.c
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2009-04-07 16:36:52 +0000
committerGerald Combs <gerald@wireshark.org>2009-04-07 16:36:52 +0000
commit6348c17c169af8fceac75703b86771fb2c7c614b (patch)
tree54671c51518c7adf46aa8c97c76bc5bc2068fd2f /epan/follow.c
parent6f92b028aa08f3c057009646b62b12cedd546bab (diff)
size_t fixes.
svn path=/trunk/; revision=27984
Diffstat (limited to 'epan/follow.c')
-rw-r--r--epan/follow.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/follow.c b/epan/follow.c
index 953e07fe56..604c25494b 100644
--- a/epan/follow.c
+++ b/epan/follow.c
@@ -384,7 +384,7 @@ check_fragments( int index, tcp_stream_chunk *sc, gulong acknowledged ) {
*/
dummy_str = g_strdup_printf("[%d bytes missing in capture file]",
(int)(lowest_seq - seq[index]) );
- sc->dlen = strlen(dummy_str);
+ sc->dlen = (guint32) strlen(dummy_str);
write_packet_data( index, sc, dummy_str );
g_free(dummy_str);
seq[index] = lowest_seq;