Fix lack of newline when passing no files to RGBLINK

This commit is contained in:
ISSOtm
2019-12-10 18:35:40 +01:00
parent b30dfb166b
commit 373762dedc

View File

@@ -159,7 +159,7 @@ int main(int argc, char *argv[])
/* If no input files were specified, the user must have screwed up */ /* If no input files were specified, the user must have screwed up */
if (curArgIndex == argc) { if (curArgIndex == argc) {
fprintf(stderr, "No input files"); fputs("No input files\n", stderr);
printUsage(); printUsage();
exit(1); exit(1);
} }