diff options
Diffstat (limited to 'src/journal')
-rw-r--r-- | src/journal/coredump.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/journal/coredump.c b/src/journal/coredump.c index 7e11cea4f1..6499fbdef8 100644 --- a/src/journal/coredump.c +++ b/src/journal/coredump.c @@ -272,7 +272,7 @@ static int maybe_remove_external_coredump(const char *filename, off_t size) { if (!filename) return 1; - if (unlink(filename) < 0) { + if (unlink(filename) < 0 && errno != ENOENT) { log_error("Failed to unlink %s: %m", filename); return -errno; } |