]> The Tcpdump Group git mirrors - tcpdump/commitdiff
Put PRIu64 on the same line as the rest of the format string.
authorGuy Harris <[email protected]>
Wed, 27 Jan 2010 02:50:53 +0000 (18:50 -0800)
committerGuy Harris <[email protected]>
Wed, 27 Jan 2010 02:50:53 +0000 (18:50 -0800)
print-forces.c

index 33016d2827662b3475bfde640da7855cf7054387..ed0cf559346782b2dd4502c1417e5339c40aa235 100644 (file)
@@ -869,8 +869,8 @@ void forces_print(register const u_char * pptr, register u_int len)
        if (vflag >= 1) {
                printf("\n\tForCES Version %d len %uB flags 0x%08x ",
                       ForCES_V(fhdr), mlen, flg_raw);
-               printf("\n\tSrcID 0x%x(%s) DstID 0x%x(%s) Correlator 0x%"
-                      PRIu64, ForCES_SID(fhdr), ForCES_node(ForCES_SID(fhdr)),
+               printf("\n\tSrcID 0x%x(%s) DstID 0x%x(%s) Correlator 0x%" PRIu64,
+                      ForCES_SID(fhdr), ForCES_node(ForCES_SID(fhdr)),
                       ForCES_DID(fhdr), ForCES_node(ForCES_DID(fhdr)),
                       EXTRACT_64BITS(fhdr->fm_cor));