From: Lennart Poettering Date: Thu, 10 May 2018 18:29:11 +0000 (-0700) Subject: tmpfiles: remove newline that shouldn't be there X-Git-Tag: v239~274 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4b93699d65f506c6594f89d311cef91dd24bfeae;p=platform%2Fupstream%2Fsystemd.git tmpfiles: remove newline that shouldn't be there We should really keep "else" branches together with their "if", hence drop the double newline here... --- diff --git a/src/tmpfiles/tmpfiles.c b/src/tmpfiles/tmpfiles.c index 6e992ca..46098c2 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;