shithub: moonfish

Download patch

ref: 3533e0108c0a2395e4af479dc701d9fad244e445
parent: ed289f774f665abf31a6c8c369a03d65c06c2aae
author: zamfofex <zamfofex@twdb.moe>
date: Wed Oct 11 08:24:16 EDT 2023

add missing line break in log string

--- a/tools/utils.c
+++ b/tools/utils.c
@@ -34,7 +34,7 @@
 	close(p2[1]);
 	
 	execvp(argv[0], argv);
-	fprintf(stderr, "%s: %s: %s", argv0, argv[0], strerror(errno));
+	fprintf(stderr, "%s: %s: %s\n", argv0, argv[0], strerror(errno));
 	
 	exit(1);
 }
--