util/spkmodem_recv: Use correct printf specifier

Signed-off-by: Leah Rowe <leah@libreboot.org>
fsdg20230625
Leah Rowe 2023-05-16 11:36:26 +01:00
parent 0cc23b2363
commit c23806e1f6
1 changed files with 1 additions and 1 deletions

View File

@ -68,7 +68,7 @@ print_chars(void)
long stdin_pos = 0;
if ((stdin_pos = ftell(stdin)) == -1)
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));
#endif
if (f1 < FREQ_DATA_THRESHOLD)