util/spkmodem-recv: only print unhandled err on -d

Signed-off-by: Leah Rowe <leah@libreboot.org>
fsdg20230625
Leah Rowe 2023-06-05 01:53:24 +01:00
parent 3fb99a017d
commit 2652a1ddfa
1 changed files with 3 additions and 3 deletions

View File

@ -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