1
0
mirror of https://github.com/Interlisp/maiko.git synced 2026-04-26 04:17:27 +00:00

Eliminate warnings for ignored fprintf() result when printing messages to stderr

This commit is contained in:
Nick Briggs
2024-04-24 11:41:46 -07:00
parent 38862ddb08
commit c391641691
15 changed files with 86 additions and 86 deletions

View File

@@ -34,7 +34,7 @@ void VGA_setmax(DspInterface dsp)
struct videoconfig vc;
if (!_setvideomode(_MAXRESMODE)) {
fprintf(stderr, "Can't set graphics mode.\n");
(void)fprintf(stderr, "Can't set graphics mode.\n");
exit(1);
}
_getvideoconfig(&vc);