1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-05-20 11:31:28 +02:00

github : fix small typo

This commit is contained in:
ErrrorMaxx 2023-10-21 09:05:52 +03:00 committed by Matthew Martin
parent 5fd8cccf54
commit 0c15cc8712
2 changed files with 3 additions and 1 deletions

View file

@ -3,6 +3,8 @@
* github #103: Christian Heusel: Completion/Unix/Command/_zfs: fix
completion for zpool upgrade
* github #104: ErrrorMaxx: Src/exec.c: fix small typo
2023-10-16 Mikael Magnusson <mikachu@gmail.com>
* 52056: Completion/Unix/Command/_sccs: _sccs: don't handle

View file

@ -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;