tmpfiles: remove newline that shouldn't be there

We should really keep "else" branches together with their "if", hence
drop the double newline here...
This commit is contained in:
Lennart Poettering 2018-05-10 11:29:11 -07:00 committed by Zbigniew Jędrzejewski-Szmek
parent cb91deaf77
commit 4b93699d65
1 changed files with 1 additions and 3 deletions

View File

@ -2144,9 +2144,7 @@ static int parse_line(const char *fname, unsigned line, const char *buffer, bool
/* invalid quoting and such or an unknown specifier */
*invalid_config = true;
return log_error_errno(r, "[%s:%u] Failed to parse line: %m", fname, line);
}
else if (r < 2) {
} else if (r < 2) {
*invalid_config = true;
log_error("[%s:%u] Syntax error.", fname, line);
return -EIO;