mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-06-09 06:28:06 +02:00
github #104: fix small typo
This commit is contained in:
parent
5fd8cccf54
commit
0c15cc8712
2 changed files with 3 additions and 1 deletions
|
@ -3,6 +3,8 @@
|
||||||
* github #103: Christian Heusel: Completion/Unix/Command/_zfs: fix
|
* github #103: Christian Heusel: Completion/Unix/Command/_zfs: fix
|
||||||
completion for zpool upgrade
|
completion for zpool upgrade
|
||||||
|
|
||||||
|
* github #104: ErrrorMaxx: Src/exec.c: fix small typo
|
||||||
|
|
||||||
2023-10-16 Mikael Magnusson <mikachu@gmail.com>
|
2023-10-16 Mikael Magnusson <mikachu@gmail.com>
|
||||||
|
|
||||||
* 52056: Completion/Unix/Command/_sccs: _sccs: don't handle
|
* 52056: Completion/Unix/Command/_sccs: _sccs: don't handle
|
||||||
|
|
|
@ -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 */
|
/* fd will be over 10, don't touch mfds */
|
||||||
fd1 = movefd(fd2);
|
fd1 = movefd(fd2);
|
||||||
if (fd1 == -1) {
|
if (fd1 == -1) {
|
||||||
zerr("cannot moved fd %d: %e", fd2, errno);
|
zerr("cannot move fd %d: %e", fd2, errno);
|
||||||
return;
|
return;
|
||||||
} else {
|
} else {
|
||||||
fdtable[fd1] = FDT_EXTERNAL;
|
fdtable[fd1] = FDT_EXTERNAL;
|
||||||
|
|
Loading…
Reference in a new issue