shithub: scc

Download patch

ref: 7d2f47dc7b2267e115019d73a88788d5b313fbb9
parent: 6d01242876fda6bd9861414b477196e6f25bc8d8
author: Roberto E. Vargas Caballero <k0ga@shike2.com>
date: Mon Dec 14 09:15:54 EST 2015

Fix small typo in cc1/lex.c

--- a/cc1/lex.c
+++ b/cc1/lex.c
@@ -395,7 +395,7 @@
 static char
 escape(void)
 {
-	int n, base;
+	int c, base;
 
 	switch (*++input->p) {
 	case 'a':  return '\a';