shithub: rgbds

Download patch

ref: 373762dedcbd0f6a4b59c43fbc22884337c7380c
parent: b30dfb166b46a81f12c85d80a820f4459b07896c
author: ISSOtm <eldredhabert0@gmail.com>
date: Tue Dec 10 13:35:40 EST 2019

Fix lack of newline when passing no files to RGBLINK

--- a/src/link/main.c
+++ b/src/link/main.c
@@ -159,7 +159,7 @@
 
 	/* If no input files were specified, the user must have screwed up */
 	if (curArgIndex == argc) {
-		fprintf(stderr, "No input files");
+		fputs("No input files\n", stderr);
 		printUsage();
 		exit(1);
 	}