Fix a silly compile error, thanks to a patch from Wen-chien Jesse Sung
diff --git a/init/init.c b/init/init.c
index ad9ff94..258a7fa 100644
--- a/init/init.c
+++ b/init/init.c
@@ -219,7 +219,10 @@
 {
 	va_list arguments;
 	int l;
-		char msg[1024];
+	char msg[1024];
+#ifndef CONFIG_SYSLOGD
+	static int log_fd = -1;
+#endif
 
 	msg[0] = '\r';
 		va_start(arguments, fmt);
@@ -236,7 +239,6 @@
 	msg[l++] = '\n';
 	msg[l] = 0;
 #else
-	static int log_fd = -1;
 
 	msg[l++] = '\n';
 	msg[l] = 0;