mirror of
https://codeberg.org/libreboot/lbmk.git
synced 2026-07-11 05:52:36 +02:00
util/spkmodem-recv: only print unhandled err on -d
Signed-off-by: Leah Rowe <leah@libreboot.org>
This commit is contained in:
@@ -47,9 +47,9 @@ main(int argc, char *argv[])
|
||||
setvbuf(stdout, NULL, _IONBF, 0);
|
||||
while (!feof(stdin))
|
||||
handle_audio();
|
||||
if (errno)
|
||||
err(errno, "Unhandled error upon exit. Exit status is errno.");
|
||||
return 0;
|
||||
if (errno && debug)
|
||||
err(errno, "Unhandled error, errno %d", errno);
|
||||
return errno;
|
||||
}
|
||||
|
||||
void
|
||||
|
||||
Reference in New Issue
Block a user