parser/c_compiler/test/error.c
changeset 40 be3f5582b839
parent 39 46d7ec9d63bd
child 77 49e0babccb23
--- a/parser/c_compiler/test/error.c
+++ b/parser/c_compiler/test/error.c
@@ -5,8 +5,10 @@
 {
     FILE *fp;
 
-	/* ERROR SEMICOLON IS MISSING */
+    /*
+     * ERROR SEMICOLON IS MISSING
+     */
     printf ("Hello, world\n")
 
-    return EXIT_SUCCESS;
+        return EXIT_SUCCESS;
 }