diff options
Diffstat (limited to 'cfgdir.c')
-rw-r--r-- | cfgdir.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -291,7 +291,7 @@ inotify_free(struct uring_task *task) fprintf(stderr, "%s called\n", __func__); if (!iev || !cfg) - die("%s: iev or cfg is NULL!?\n", __func__); + die("iev or cfg is NULL!?"); xfree(iev); cfg->iev = NULL; @@ -364,7 +364,7 @@ inotify_cb(struct cfg *cfg, struct uring_task *task, int res) inotify_event_dump(event); if (event->mask & (IN_IGNORED | IN_MOVE_SELF | IN_DELETE_SELF | IN_UNMOUNT)) - die("Configuration directory gone, exiting\n"); + die("Configuration directory gone, exiting"); if (event->mask & IN_Q_OVERFLOW) { error("inotify queue overflow!\n"); |