summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1996-01-30 18:41:57 +0000
committerRichard M. Stallman <rms@gnu.org>1996-01-30 18:41:57 +0000
commit7bb3fe7f04c3468af0f0f2355b46aa7335f474c0 (patch)
tree79f0e4fa6e8937d3b77cf57f48c480101290d364
parente0c25223851359f5bbbc292adbe1cffd19ab5625 (diff)
downloademacs-7bb3fe7f04c3468af0f0f2355b46aa7335f474c0.tar.gz
(child_setup): Fix size in write call.
-rw-r--r--src/callproc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/callproc.c b/src/callproc.c
index 9151f0d1b04..12e0aa0ce0b 100644
--- a/src/callproc.c
+++ b/src/callproc.c
@@ -877,7 +877,7 @@ child_setup (in, out, err, new_argv, set_pgrp, current_dir)
environ = env;
execvp (new_argv[0], new_argv);
- write (1, "Can't exec program: ", 26);
+ write (1, "Can't exec program: ", 20);
write (1, new_argv[0], strlen (new_argv[0]));
write (1, "\n", 1);
_exit (1);