shithub: sce

Download patch

ref: e52f88ab940639d0b0e209d39404a19fe0c2df4d
parent: 1c6adc14e8febf8d631984b2ae1de6a3f3e97baa
author: qwx <qwx@sciops.net>
date: Wed Sep 2 04:48:40 EDT 2020

util: fix extra newline in dprint, not used that way

--- a/util.c
+++ b/util.c
@@ -29,7 +29,7 @@
 	va_start(arg, fmt);
 	vseprint(s, s+sizeof s, fmt, arg);
 	va_end(arg);
-	fprint(2, "%s\n", s);
+	fprint(2, "%s", s);
 }
 
 char *