summaryrefslogtreecommitdiff
path: root/test/CFrontend/2002-05-24-Alloca.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/CFrontend/2002-05-24-Alloca.c')
-rw-r--r--test/CFrontend/2002-05-24-Alloca.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/CFrontend/2002-05-24-Alloca.c b/test/CFrontend/2002-05-24-Alloca.c
index 0a44db12ea..ac5b78d0c9 100644
--- a/test/CFrontend/2002-05-24-Alloca.c
+++ b/test/CFrontend/2002-05-24-Alloca.c
@@ -5,7 +5,7 @@
#include <stdlib.h>
int main(int argc, char **argv) {
- char *C = (char*)alloca(argc);
- strcpy(C, argv[0]);
- puts(C);
+ char *C = (char*)alloca(argc);
+ strcpy(C, argv[0]);
+ puts(C);
}