summaryrefslogtreecommitdiff
path: root/gcc/prefix.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/prefix.c')
-rwxr-xr-xgcc/prefix.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/prefix.c b/gcc/prefix.c
index 4dd8799..0281a32 100755
--- a/gcc/prefix.c
+++ b/gcc/prefix.c
@@ -121,7 +121,7 @@ concat (const char *first, ...)
/* First compute the size of the result and get sufficient memory. */
- VA_START (args, first);
+ va_start (args, first);
arg = first;
length = 0;
@@ -137,7 +137,7 @@ concat (const char *first, ...)
/* Now copy the individual pieces to the result string. */
- VA_START (args, first);
+ va_start (args, first);
end = newstr;
arg = first;