mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-08-15 11:30:30 +00:00
tests: fix mis-fixed format string
PRIu64 is "u", we need "x", so PRIx64... Signed-off-by: David Lamparter <equinox@opensourcerouting.org> Cc: Donald Sharp <sharpd@cumulusnetworks.com>
This commit is contained in:
parent
e988dfd35b
commit
eed831e065
@ -70,7 +70,7 @@ main (void)
|
||||
printf ("c: 0x%hhx\n", stream_getc (s));
|
||||
printf ("w: 0x%hx\n", stream_getw (s));
|
||||
printf ("l: 0x%x\n", stream_getl (s));
|
||||
printf ("q: 0x%" PRIu64 "\n", stream_getq (s));
|
||||
printf ("q: 0x%" PRIx64 "\n", stream_getq (s));
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user