diff options
author | Yu Watanabe <watanabe.yu+github@gmail.com> | 2023-12-24 17:41:11 +0100 |
---|---|---|
committer | Yu Watanabe <watanabe.yu+github@gmail.com> | 2023-12-24 17:56:40 +0100 |
commit | b3a9d980f303ab49614eee336fb9c54e98c9e530 (patch) | |
tree | ffbbf6e04bcd4ba9f15dcd93e1c61cc0ab4ac672 /src/sysext | |
parent | tree-wide: insert space after for and switch (diff) | |
download | systemd-b3a9d980f303ab49614eee336fb9c54e98c9e530.tar.xz systemd-b3a9d980f303ab49614eee336fb9c54e98c9e530.zip |
tree-wide: drop space between variable and an increment/decrement
Diffstat (limited to 'src/sysext')
-rw-r--r-- | src/sysext/sysext.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sysext/sysext.c b/src/sysext/sysext.c index 33cb8c1963..fe11fe0f07 100644 --- a/src/sysext/sysext.c +++ b/src/sysext/sysext.c @@ -854,7 +854,7 @@ static int merge_subprocess( if (r < 0) return log_oom(); - n_extensions ++; + n_extensions++; } /* Nothing left? Then shortcut things */ |