]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
tmpfiles: remove newline that shouldn't be there
authorLennart Poettering <lennart@poettering.net>
Thu, 10 May 2018 18:29:11 +0000 (11:29 -0700)
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>
Fri, 11 May 2018 06:15:33 +0000 (08:15 +0200)
We should really keep "else" branches together with their "if", hence
drop the double newline here...

src/tmpfiles/tmpfiles.c

index 6e992ca3a90caf036fae82d65c4b865893d3f987..46098c215c3546a056284cf5e61f2602713e8f54 100644 (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;