]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
pid1: drop unnecessary space
authorYu Watanabe <watanabe.yu+github@gmail.com>
Tue, 21 Nov 2023 21:25:20 +0000 (06:25 +0900)
committerYu Watanabe <watanabe.yu+github@gmail.com>
Tue, 21 Nov 2023 23:26:34 +0000 (08:26 +0900)
src/core/show-status.c

index d5eb72415966ba8833e75b5f8a8d8523342d9985..1d47c0af4d2db4b9bfc5ffc7a86cab7488c750e6 100644 (file)
@@ -98,7 +98,7 @@ int status_vprintf(const char *status, ShowStatusFlags flags, const char *format
 
         if (prev_ephemeral && !FLAGS_SET(flags, SHOW_STATUS_EPHEMERAL))
                 iovec[n++] = IOVEC_MAKE_STRING(ANSI_ERASE_TO_END_OF_LINE);
-        prev_ephemeral = FLAGS_SET(flags, SHOW_STATUS_EPHEMERAL) ;
+        prev_ephemeral = FLAGS_SET(flags, SHOW_STATUS_EPHEMERAL);
 
         if (writev(fd, iovec, n) < 0)
                 return -errno;