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

Signed-off-by: Leah Rowe <leah@libreboot.org>
This commit is contained in:
Leah Rowe
2023-06-05 01:53:24 +01:00
parent 3fb99a017d
commit 2652a1ddfa
+3 -3
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