aboutsummaryrefslogtreecommitdiffstats
path: root/tap-protohierstat.c
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2007-12-06 08:32:38 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2007-12-06 08:32:38 +0000
commit68d9dc18a9303872486eaf77cdc0eee05655db4e (patch)
tree87efb4f57b4c1f36ee8aff94c1f0652390fa2764 /tap-protohierstat.c
parent051d6dab4dad87680d48d6a4977927cd3ed3dd81 (diff)
Use G_GINT64_MODIFIER rather than PRI[duox]64 to print gint64's and
guint64's. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@23781 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'tap-protohierstat.c')
-rw-r--r--tap-protohierstat.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tap-protohierstat.c b/tap-protohierstat.c
index 45e716ae97..415c2f0d71 100644
--- a/tap-protohierstat.c
+++ b/tap-protohierstat.c
@@ -153,7 +153,7 @@ phs_draw(phs_t *rs, int indentation)
stroff+=g_snprintf(str+stroff, MAXPHSLINE-stroff, " ");
}
stroff+=g_snprintf(str+stroff, MAXPHSLINE-stroff, rs->proto_name);
- printf("%-40s frames:%d bytes:%" PRId64 "\n",str, rs->frames, rs->bytes);
+ printf("%-40s frames:%d bytes:%" G_GINT64_MODIFIER "d\n",str, rs->frames, rs->bytes);
phs_draw(rs->child, indentation+1);
}
}