summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorguy <guy>2008-07-01 07:45:09 +0000
committerguy <guy>2008-07-01 07:45:09 +0000
commiteb59baea16a7282e71ab74dda8391f3e0d81fe6f (patch)
tree8a20f4fd104e6cb49b09d3404ae8c9656438f897
parentcad67915cf2f9838111d2b1c1ad2797a13388a97 (diff)
downloadtcpdump-eb59baea16a7282e71ab74dda8391f3e0d81fe6f.tar.gz
Fix use of PRIu64.
-rw-r--r--print-rx.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/print-rx.c b/print-rx.c
index e66dc298..3812a120 100644
--- a/print-rx.c
+++ b/print-rx.c
@@ -34,7 +34,7 @@
#ifndef lint
static const char rcsid[] _U_ =
- "@(#) $Header: /tcpdump/master/tcpdump/print-rx.c,v 1.39.2.2 2008-07-01 07:41:29 guy Exp $";
+ "@(#) $Header: /tcpdump/master/tcpdump/print-rx.c,v 1.39.2.3 2008-07-01 07:45:09 guy Exp $";
#endif
#ifdef HAVE_CONFIG_H
@@ -707,7 +707,7 @@ rx_cache_find(const struct rx_header *rxh, const struct ip *ip, int sport,
TCHECK2(bp[0], sizeof(u_int64_t)); \
i = EXTRACT_64BITS(bp); \
bp += sizeof(u_int64_t); \
- printf(" " PRIu64, i); \
+ printf(" %" PRIu64, i); \
}
#define DATEOUT() { time_t t; struct tm *tm; char str[256]; \