about summary refs log tree commit diff
path: root/Src/exec.c
diff options
context:
space:
mode:
authorErrrorMaxx <herobrine135111@gmail.com>2023-10-21 09:05:52 +0300
committerMatthew Martin <phy1729@gmail.com>2023-10-24 20:42:46 -0500
commit0c15cc8712b5b3c83d52b1c27f416db80d3426aa (patch)
tree996d4693e78d4b51a9a2a7816405ea05126494fa /Src/exec.c
parent5fd8cccf54e8bda291b8f45ca9dacfa4205a1ced (diff)
downloadzsh-0c15cc8712b5b3c83d52b1c27f416db80d3426aa.tar.gz
zsh-0c15cc8712b5b3c83d52b1c27f416db80d3426aa.tar.xz
zsh-0c15cc8712b5b3c83d52b1c27f416db80d3426aa.zip
github #104: fix small typo
Diffstat (limited to 'Src/exec.c')
-rw-r--r--Src/exec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Src/exec.c b/Src/exec.c
index 3a8b3e951..285d2c5ad 100644
--- a/Src/exec.c
+++ b/Src/exec.c
@@ -2388,7 +2388,7 @@ addfd(int forked, int *save, struct multio **mfds, int fd1, int fd2, int rflag,
 	/* fd will be over 10, don't touch mfds */
 	fd1 = movefd(fd2);
 	if (fd1 == -1) {
-	    zerr("cannot moved fd %d: %e", fd2, errno);
+	    zerr("cannot move fd %d: %e", fd2, errno);
 	    return;
 	} else {
 	    fdtable[fd1] = FDT_EXTERNAL;