diff options
author | Guy Harris <guy@alum.mit.edu> | 2007-12-05 10:34:01 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2007-12-05 10:34:01 +0000 |
commit | 1ce4e812928933e404e2692c534d96b7f893039c (patch) | |
tree | 1ccf40dc41dfd7ef02c0970e10f22cce05df13bf /tap-afpstat.c | |
parent | 3af2d0708a3a73e224de8982ea7a8369d991192e (diff) | |
download | wireshark-1ce4e812928933e404e2692c534d96b7f893039c.tar.gz wireshark-1ce4e812928933e404e2692c534d96b7f893039c.tar.bz2 wireshark-1ce4e812928933e404e2692c534d96b7f893039c.zip |
Use G_GINT64_MODIFIER to print gint64's and guint64's.
svn path=/trunk/; revision=23767
Diffstat (limited to 'tap-afpstat.c')
-rw-r--r-- | tap-afpstat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tap-afpstat.c b/tap-afpstat.c index 704b1716ab..43bffbc5b9 100644 --- a/tap-afpstat.c +++ b/tap-afpstat.c @@ -100,7 +100,7 @@ afpstat_draw(void *pss) td=0; } - printf("%-25s %6d %3d.%05d %3d.%05d %3" PRIu64 ".%05" PRIu64 "\n", + printf("%-25s %6d %3d.%05d %3d.%05d %3" G_GINT64_MODIFIER "u.%05" G_GINT64_MODIFIER "u\n", val_to_str(i, CommandCode_vals, "Unknown (%u)"), ss->proc[i].num, (int)ss->proc[i].min.secs,ss->proc[i].min.nsecs/10000, |