changeset 18494:c64480c04c07

(Fcall_process): Fix previous change.
author Richard M. Stallman <rms@gnu.org>
date Sun, 29 Jun 1997 03:39:02 +0000
parents d65021d5c39e
children 9b000e52acb3
files src/callproc.c
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/callproc.c	Sun Jun 29 00:35:28 1997 +0000
+++ b/src/callproc.c	Sun Jun 29 03:39:02 1997 +0000
@@ -391,10 +391,10 @@
 	    int size = encoding_buffer_size (&argument_coding,
 					     XSTRING (args[i])->size);
 	    int produced, dummy;
-	    unsigned char *dummy = (unsigned char *) alloca (size);
+	    unsigned char *dummy1 = (unsigned char *) alloca (size);
 
 	    /* The Irix 4.0 compiler barfs if we eliminate dummy.  */
-	    new_argv[i - 3] = dummy;
+	    new_argv[i - 3] = dummy1;
 	    produced = encode_coding (&argument_coding,
 				      XSTRING (args[i])->data, new_argv[i - 3],
 				      XSTRING (args[i])->size, size, &dummy);