aboutsummaryrefslogtreecommitdiffstats
path: root/gtk
diff options
context:
space:
mode:
authorJaap Keuter <jaap.keuter@xs4all.nl>2006-02-24 20:46:39 +0000
committerJaap Keuter <jaap.keuter@xs4all.nl>2006-02-24 20:46:39 +0000
commitb78143e9b113dc5e16d2bfeaec2b2e465fca7cbc (patch)
tree96f134b7159aa64437149c6b052d120c42b56123 /gtk
parenteddf915e402598d19dab5e54f622112ed64386ae (diff)
Fix bug 769. Print seq# and ack# as _unsigned_ int in the comment.
svn path=/trunk/; revision=17400
Diffstat (limited to 'gtk')
-rw-r--r--gtk/flow_graph.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/flow_graph.c b/gtk/flow_graph.c
index f99820f4f4..7419829fe3 100644
--- a/gtk/flow_graph.c
+++ b/gtk/flow_graph.c
@@ -343,7 +343,7 @@ static int flow_graph_tcp_add_to_graph(packet_info *pinfo, const struct tcpheade
gai->frame_label = g_strdup(flags);
}
- gai->comment = g_strdup_printf("Seq = %i Ack = %i",tcph->th_seq, tcph->th_ack);
+ gai->comment = g_strdup_printf("Seq = %lu Ack = %lu",tcph->th_seq, tcph->th_ack);
gai->line_style=1;
gai->conv_num=0;