diff options
Diffstat (limited to '')
-rw-r--r-- | sys-utils/irqtop.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys-utils/irqtop.c b/sys-utils/irqtop.c index 7baa47b..11a11fb 100644 --- a/sys-utils/irqtop.c +++ b/sys-utils/irqtop.c @@ -177,7 +177,7 @@ static int event_loop(struct irqtop_ctl *ctl, struct irq_output *out) efd = epoll_create1(0); if ((tfd = timerfd_create(CLOCK_MONOTONIC, 0)) < 0) - err(EXIT_FAILURE, _("cannot not create timerfd")); + err(EXIT_FAILURE, _("cannot create timerfd")); if (timerfd_settime(tfd, 0, &ctl->timer, NULL) != 0) err(EXIT_FAILURE, _("cannot set timerfd")); @@ -197,7 +197,7 @@ static int event_loop(struct irqtop_ctl *ctl, struct irq_output *out) sigaddset(&sigmask, SIGQUIT); if ((sfd = signalfd(-1, &sigmask, SFD_CLOEXEC)) < 0) - err(EXIT_FAILURE, _("cannot not create signalfd")); + err(EXIT_FAILURE, _("cannot create signalfd")); ev.events = EPOLLIN; ev.data.fd = sfd; |