From 8ffc4162e267cf55a8fe789792fc3568fd82ecd7 Mon Sep 17 00:00:00 2001 From: Matt Whitlock Date: Mon, 16 Aug 2021 23:21:33 -0400 Subject: code style: remove space after unary "not" operator There are no semantic changes in this commit. Suggested-by: Mike Frysinger See: https://github.com/OpenRC/openrc/pull/435#pullrequestreview-727035394 --- src/rc/do_value.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/rc/do_value.c') diff --git a/src/rc/do_value.c b/src/rc/do_value.c index 2758b8e8..9ec5facf 100644 --- a/src/rc/do_value.c +++ b/src/rc/do_value.c @@ -43,7 +43,7 @@ int main(int argc, char **argv) if (service == NULL) eerrorx("%s: no service specified", applet); - if (argc < 2 || ! argv[1] || *argv[1] == '\0') + if (argc < 2 || !argv[1] || *argv[1] == '\0') eerrorx("%s: no option specified", applet); if (strcmp(applet, "service_get_value") == 0 || -- cgit v1.2.3