From 4b93699d65f506c6594f89d311cef91dd24bfeae Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Thu, 10 May 2018 11:29:11 -0700 Subject: [PATCH] tmpfiles: remove newline that shouldn't be there We should really keep "else" branches together with their "if", hence drop the double newline here... --- src/tmpfiles/tmpfiles.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/tmpfiles/tmpfiles.c b/src/tmpfiles/tmpfiles.c index 6e992ca3a90..46098c215c3 100644 --- a/src/tmpfiles/tmpfiles.c +++ b/src/tmpfiles/tmpfiles.c @@ -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; -- 2.47.3