diff options
Diffstat (limited to 'libiberty/argv.c')
-rw-r--r-- | libiberty/argv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libiberty/argv.c b/libiberty/argv.c index 195d31019a0..85c17e930ee 100644 --- a/libiberty/argv.c +++ b/libiberty/argv.c @@ -225,7 +225,7 @@ char *input; if (input != NULL) { - copybuf = alloca (strlen (input) + 1); + copybuf = (char *) alloca (strlen (input) + 1); /* Is a do{}while to always execute the loop once. Always return an argv, even for null strings. See NOTES above, test case below. */ do |