summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--inotail.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/inotail.c b/inotail.c
index a9282c5..9bd7f21 100644
--- a/inotail.c
+++ b/inotail.c
@@ -512,7 +512,7 @@ int main(int argc, char **argv)
struct stat finfo;
int rc = fstat(STDIN_FILENO, &finfo);
- if (rc == -1) {
+ if (unlikely(rc == -1)) {
fprintf(stderr, "Error: Could not stat stdin (%s)\n", strerror(errno));
exit(EXIT_FAILURE);
}
b22f4bc5f47bc350dba4b35a37f&id2=658bcdae9c6755806e66b33e29d56b33a3ff421a'>diff)
MAINTAINERS: Saying goodbye to Hans J. Koch
We had to say goodbye when Hans passed away recently. Hans was a free-software enthusiast and an active contributor. He was the main author and maintainer of the UIO subsystem and contributed in various ways to the Linux kernel as a professional and hobbyist. He is greatly missed. Signed-off-by: Benedikt Spranger <b.spranger@linutronix.de> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'CREDITS')