coredump: use log_error_errno() where appropriate

This commit is contained in:
Lennart Poettering 2020-06-24 16:34:36 +02:00
parent d80b051cea
commit 3afe5c00a5
1 changed files with 2 additions and 2 deletions

View File

@ -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 {