From: Kay Sievers Date: Sun, 17 Apr 2011 20:10:18 +0000 (+0200) Subject: use 'else if' in epoll event array loop X-Git-Tag: 174~179 X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=13052c02851b1dfb81c584eee141b83f80c98e0e;p=systemd use 'else if' in epoll event array loop --- diff --git a/libudev/test-libudev.c b/libudev/test-libudev.c index 9dc86bd9..4192ba14 100644 --- a/libudev/test-libudev.c +++ b/libudev/test-libudev.c @@ -286,9 +286,7 @@ static int test_monitor(struct udev *udev) } print_device(device); udev_device_unref(device); - } - - if (ev[i].data.fd == STDIN_FILENO && ev[i].events & EPOLLIN) { + } else if (ev[i].data.fd == STDIN_FILENO && ev[i].events & EPOLLIN) { printf("exiting loop\n"); goto out; } diff --git a/udev/udevadm-monitor.c b/udev/udevadm-monitor.c index 8fe9e052..e1bb6fe1 100644 --- a/udev/udevadm-monitor.c +++ b/udev/udevadm-monitor.c @@ -266,9 +266,7 @@ int udevadm_monitor(struct udev *udev, int argc, char *argv[]) continue; print_device(device, "KERNEL", prop); udev_device_unref(device); - } - - if (ev[i].data.fd == fd_udev && ev[i].events & EPOLLIN) { + } else if (ev[i].data.fd == fd_udev && ev[i].events & EPOLLIN) { struct udev_device *device; device = udev_monitor_receive_device(udev_monitor);