From 3afe5c00a56a2f75ef2061ce907874c0c3473859 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Wed, 24 Jun 2020 16:34:36 +0200 Subject: [PATCH] coredump: use log_error_errno() where appropriate --- src/coredump/coredumpctl.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/coredump/coredumpctl.c b/src/coredump/coredumpctl.c index c68fc6b4c9..02502528af 100644 --- a/src/coredump/coredumpctl.c +++ b/src/coredump/coredumpctl.c @@ -839,8 +839,8 @@ static int save_core(sd_journal *j, FILE *file, char **path, bool *unlink_temp) goto error; } #else - log_error("Cannot decompress file. Compiled without compression support."); - r = -EOPNOTSUPP; + r = log_error_errno(SYNTHETIC_ERRNO(EOPNOTSUPP), + "Cannot decompress file. Compiled without compression support."); goto error; #endif } else {