summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Meyering <meyering@fb.com>2020-01-05 13:47:31 -0800
committerJim Meyering <meyering@fb.com>2020-01-05 13:47:31 -0800
commit3c1e83363b4cbb803182ab7d58cb4d840cc77e16 (patch)
tree19107e4d65c8906f08545547ba34c2f8d2b74170
parent174718e3c19bb537100cc4f44d16baec72f39844 (diff)
downloadsed-3c1e83363b4cbb803182ab7d58cb4d840cc77e16.tar.gz
maint: space-before-open-paren: avoid syntax-check error
* sed/sed.c (selinux_support): Insert space before open-paren.
-rw-r--r--sed/sed.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sed/sed.c b/sed/sed.c
index 0156d97..df88b2a 100644
--- a/sed/sed.c
+++ b/sed/sed.c
@@ -137,7 +137,7 @@ selinux_support (void)
putchar ('\n');
#if HAVE_SELINUX_SELINUX_H
puts (_("This sed program was built with SELinux support."));
- if (is_selinux_enabled())
+ if (is_selinux_enabled ())
puts (_("SELinux is enabled on this system."));
else
puts (_("SELinux is disabled on this system."));