We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fcb33ab commit 4377fb4Copy full SHA for 4377fb4
msys2/PKGBUILD
@@ -1,6 +1,6 @@
1
pkgname=fish
2
pkgver=4.0.0
3
-pkgrel=2
+pkgrel=3
4
epoch=
5
pkgdesc='Smart and user friendly shell intended mostly for interactive use'
6
arch=('x86_64')
src/fd_monitor.rs
@@ -386,7 +386,7 @@ impl BackgroundFdMonitor {
386
.map(|duration| duration.as_micros() as u64)
387
.unwrap_or(FdReadableSet::kNoTimeout),
388
);
389
- if ret < 0 && !matches!(errno().0, libc::EINTR | libc::EBADF) {
+ if ret < 0 && !matches!(errno().0, libc::EINTR | libc::EBADF | 0) {
390
// Surprising error
391
perror("select");
392
}
0 commit comments