summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/ulogd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ulogd.c b/src/ulogd.c
index dc0407e..aac7be7 100644
--- a/src/ulogd.c
+++ b/src/ulogd.c
@@ -899,7 +899,7 @@ static void ulogd_main_loop(void)
next = ulogd_get_next_timer_run(&next_alarm);
ret = ulogd_select_main(next);
- if (ret < 0 && errno != -EINTR)
+ if (ret < 0 && errno != EINTR)
ulogd_log(ULOGD_ERROR, "select says %s\n",
strerror(errno));
}