]> The Tcpdump Group git mirrors - tcpdump/commitdiff
Fix error in my previous commit.
authorGuy Harris <[email protected]>
Mon, 6 May 2013 22:53:35 +0000 (15:53 -0700)
committerGuy Harris <[email protected]>
Mon, 6 May 2013 22:54:10 +0000 (15:54 -0700)
print-zeromq.c

index 4c98dde7efadb17275a392ab9c2cac9c4290eb12..b957b9b8c7c376c4048f57c36615f780ddea36c5 100644 (file)
@@ -169,7 +169,7 @@ zmtp1_print_intermediate_part(const u_char *cp, const u_int len) {
 
        TCHECK2(*cp, 2);
        frame_offset = EXTRACT_16BITS(cp);
-       printf("\n\t frame offset 0x%04u", frame_offset);
+       printf("\n\t frame offset 0x%04x", frame_offset);
        cp += 2;
        remaining_len = snapend - cp; /* without the frame length */