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

@@ -38,7 +38,7 @@
#define ARRAY_SIZE(a) (sizeof(a) / sizeof((a)[0]))
#ifdef __GLIBC__
# if ! defined (__UCLIBC__) && ! defined (__dietlibc__)
# if !defined (__UCLIBC__) && !defined (__dietlibc__)
# define strlcpy(dst, src, size) snprintf(dst, size, "%s", src)
# endif
#endif
@@ -85,7 +85,7 @@ _unused static char *xstrdup(const char *str)
{
char *value;
if (! str)
if (!str)
return (NULL);
value = strdup(str);