Skip to content
Snippets Groups Projects
Commit 3798e5ad authored by Leah Rowe's avatar Leah Rowe
Browse files

util/spkmodem_recv: Use correct printf specifier


Signed-off-by: default avatarLeah Rowe <leah@libreboot.org>
parent 0b24fc65
Branches
No related merge requests found
......@@ -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)
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment