util/spkmodem-recv: only print unhandled err on -d
Signed-off-by: Leah Rowe <leah@libreboot.org>fsdg20230625
parent
3fb99a017d
commit
2652a1ddfa
|
@ -47,9 +47,9 @@ main(int argc, char *argv[])
|
||||||
setvbuf(stdout, NULL, _IONBF, 0);
|
setvbuf(stdout, NULL, _IONBF, 0);
|
||||||
while (!feof(stdin))
|
while (!feof(stdin))
|
||||||
handle_audio();
|
handle_audio();
|
||||||
if (errno)
|
if (errno && debug)
|
||||||
err(errno, "Unhandled error upon exit. Exit status is errno.");
|
err(errno, "Unhandled error, errno %d", errno);
|
||||||
return 0;
|
return errno;
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
|
|
Loading…
Reference in New Issue