diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/callproc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/callproc.c b/src/callproc.c index 0de906c5879..7cd94646dec 100644 --- a/src/callproc.c +++ b/src/callproc.c | |||
| @@ -391,10 +391,10 @@ If you quit, the process is killed with SIGINT, or SIGKILL if you quit again.") | |||
| 391 | int size = encoding_buffer_size (&argument_coding, | 391 | int size = encoding_buffer_size (&argument_coding, |
| 392 | XSTRING (args[i])->size); | 392 | XSTRING (args[i])->size); |
| 393 | int produced, dummy; | 393 | int produced, dummy; |
| 394 | unsigned char *dummy = (unsigned char *) alloca (size); | 394 | unsigned char *dummy1 = (unsigned char *) alloca (size); |
| 395 | 395 | ||
| 396 | /* The Irix 4.0 compiler barfs if we eliminate dummy. */ | 396 | /* The Irix 4.0 compiler barfs if we eliminate dummy. */ |
| 397 | new_argv[i - 3] = dummy; | 397 | new_argv[i - 3] = dummy1; |
| 398 | produced = encode_coding (&argument_coding, | 398 | produced = encode_coding (&argument_coding, |
| 399 | XSTRING (args[i])->data, new_argv[i - 3], | 399 | XSTRING (args[i])->data, new_argv[i - 3], |
| 400 | XSTRING (args[i])->size, size, &dummy); | 400 | XSTRING (args[i])->size, size, &dummy); |