code style: remove space after unary "not" operator

There are no semantic changes in this commit.

Suggested-by: Mike Frysinger <vapier@gentoo.org>
See: https://github.com/OpenRC/openrc/pull/435#pullrequestreview-727035394
This commit is contained in:
Matt Whitlock
2021-08-16 23:21:33 -04:00
committed by Mike Frysinger
parent 703bdbf88e
commit 8ffc4162e2
19 changed files with 42 additions and 42 deletions

View File

@@ -800,7 +800,7 @@ int main(int argc, char **argv)
if (makepidfile && pidfile) {
fp = fopen(pidfile, "w");
if (! fp)
if (!fp)
eerrorx("%s: fopen `%s': %s", applet, pidfile,
strerror(errno));
fprintf(fp, "%d\n", mypid);