Fix PR2096, a regression introduced with my patch last night. This
[oota-llvm.git] / test / CFrontend / 2002-07-30-VarArgsCallFailure.c
index 14c879c7a92d3f34fd33197c8a90d7bbc9150056..b37a462220b28e05e263eb1f9d42915db0b8e137 100644 (file)
@@ -3,6 +3,6 @@
 int tcount;
 void test(char *, const char*, int);
 void foo() {
-       char Buf[10];
-       test(Buf, "n%%%d", tcount++);
+  char Buf[10];
+  test(Buf, "n%%%d", tcount++);
 }