aboutsummaryrefslogtreecommitdiffstats
path: root/ui/gtk/tcp_graph.c
diff options
context:
space:
mode:
authorBill Meier <wmeier@newsguy.com>2015-02-09 13:42:51 -0500
committerBill Meier <wmeier@newsguy.com>2015-02-09 18:57:14 +0000
commite88a11f5c92938f0ed451703a3e1de34f76a5e50 (patch)
tree3c23b42e3d0c8db0724a160783c82fa184ecbebd /ui/gtk/tcp_graph.c
parent2078a95e934cf1063f2525a93b5f81ddb7b43e77 (diff)
(Trivial) Fix printf-related 'Mismatch on sign' warnings
Found by MSVC2013 Code Analysis Change-Id: I58063946dd558e98308c87b36eeac0ddbe1a6e79 Reviewed-on: https://code.wireshark.org/review/7045 Reviewed-by: Bill Meier <wmeier@newsguy.com>
Diffstat (limited to 'ui/gtk/tcp_graph.c')
-rw-r--r--ui/gtk/tcp_graph.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/gtk/tcp_graph.c b/ui/gtk/tcp_graph.c
index 79f27cea4b..c67fdfba22 100644
--- a/ui/gtk/tcp_graph.c
+++ b/ui/gtk/tcp_graph.c
@@ -2013,7 +2013,7 @@ static void draw_element_line(struct gtk_graph *g, struct element *e, cairo_t *c
int xx1, xx2, yy1, yy2;
debug(DBS_GRAPH_DRAWING) printf("line element: (%.2f,%.2f)->(%.2f,%.2f), "
- "seg %d ... ", e->p.line.dim.x1, e->p.line.dim.y1,
+ "seg %u ... ", e->p.line.dim.x1, e->p.line.dim.y1,
e->p.line.dim.x2, e->p.line.dim.y2, e->parent->num);
/* Set our new colour (if changed) */