shithub: scc

Download patch

ref: 848b81913101e981e2570d5167535c42018cac92
parent: 0460d8f44cd2289275665569faa21653e5ae2f96
author: Roberto E. Vargas Caballero <k0ga@shike2.com>
date: Tue May 24 15:36:57 EDT 2016

[driver] Break long line in spawn

--- a/driver/posix/scc.c
+++ b/driver/posix/scc.c
@@ -39,7 +39,8 @@
 	char archtool[16], *fmt = "%s/libexec/scc/%s";
 	int r;
 
-	r = snprintf(archtool, sizeof(archtool), arch ? "%s-%s" : "%s", tool, arch);
+	r = snprintf(archtool, sizeof(archtool),
+	             arch ? "%s-%s" : "%s", tool, arch);
 	if (r == -1 || r >= sizeof(archtool))
 		die("scc: incorrect target arch");