diff options
Diffstat (limited to 'src/journal/catalog.c')
-rw-r--r-- | src/journal/catalog.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/journal/catalog.c b/src/journal/catalog.c index 41cdb0dade..81a2e946e4 100644 --- a/src/journal/catalog.c +++ b/src/journal/catalog.c @@ -209,10 +209,8 @@ int catalog_import_file(Hashmap *h, struct strbuf *sb, const char *path) { assert(path); f = fopen(path, "re"); - if (!f) { - log_error_errno(errno, "Failed to open file %s: %m", path); - return -errno; - } + if (!f) + return log_error_errno(errno, "Failed to open file %s: %m", path); r = catalog_file_lang(path, &deflang); if (r < 0) |