mirror of
https://github.com/gbdev/rgbds.git
synced 2025-11-20 10:12:06 +00:00
fix some error messages: err() instead of errx(strerror())
This commit is contained in:
@@ -615,8 +615,7 @@ main(int argc, char *argv[])
|
||||
}
|
||||
fclose(f);
|
||||
} else {
|
||||
errx(EX_NOINPUT, "Could not open file '%s' : %s", filename,
|
||||
strerror(errno));
|
||||
err(EX_NOINPUT, "Could not open file '%s'", filename);
|
||||
}
|
||||
|
||||
return (0);
|
||||
|
||||
Reference in New Issue
Block a user