Skip to content

Commit

Permalink
Fix use of PRIu64.
Browse files Browse the repository at this point in the history
  • Loading branch information
yuguy committed Jul 1, 2008
1 parent dd9a713 commit 770e8dc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions print-rx.c
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@

#ifndef lint
static const char rcsid[] _U_ =
"@(#) $Header: /tcpdump/master/tcpdump/print-rx.c,v 1.41 2008-07-01 07:40:39 guy Exp $";
"@(#) $Header: /tcpdump/master/tcpdump/print-rx.c,v 1.42 2008-07-01 07:44:50 guy Exp $";
#endif

#ifdef HAVE_CONFIG_H
Expand Down Expand Up @@ -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]; \
Expand Down

0 comments on commit 770e8dc

Please sign in to comment.