mirror of
https://codeberg.org/libreboot/lbmk.git
synced 2026-07-19 19:23:24 +02:00
util/spkmodem_recv: Use correct printf specifier
Signed-off-by: Leah Rowe <leah@libreboot.org>
This commit is contained in:
@@ -68,7 +68,7 @@ print_chars(void)
|
|||||||
long stdin_pos = 0;
|
long stdin_pos = 0;
|
||||||
if ((stdin_pos = ftell(stdin)) == -1)
|
if ((stdin_pos = ftell(stdin)) == -1)
|
||||||
err(errno, NULL);
|
err(errno, NULL);
|
||||||
printf ("%d %d %d @%d\n", f1, f2, FREQ_DATA_THRESHOLD,
|
printf ("%d %d %d @%ld\n", f1, f2, FREQ_DATA_THRESHOLD,
|
||||||
stdin_pos - sizeof(frame));
|
stdin_pos - sizeof(frame));
|
||||||
#endif
|
#endif
|
||||||
if (f1 < FREQ_DATA_THRESHOLD)
|
if (f1 < FREQ_DATA_THRESHOLD)
|
||||||
|
|||||||
Reference in New Issue
Block a user