diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/core/path.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/path.c b/src/core/path.c index 20e454d96f..f54c77f6c3 100644 --- a/src/core/path.c +++ b/src/core/path.c @@ -99,7 +99,8 @@ int path_spec_watch(PathSpec *s, sd_event_io_handler_t handler) { break; } - log_warning("Failed to add watch on %s: %m", s->path); + log_warning("Failed to add watch on %s: %s", s->path, + errno == ENOSPC ? "too many watches" : strerror(-r)); r = -errno; if (cut) *cut = tmp; |