aboutsummaryrefslogtreecommitdiffstats
path: root/src/expr.c
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2021-12-18 09:34:31 -0800
committerPaul Eggert <eggert@cs.ucla.edu>2021-12-18 09:35:04 -0800
commit8621e44cdaf0b4c66f2204e07d6ccf52a47fb4b7 (patch)
tree8f62b3fefc79bd1a14406e6a55ad43298b1f5c57 /src/expr.c
parentbuild: non-recursive Automake in a less hacky way (diff)
downloadcoreutils-8621e44cdaf0b4c66f2204e07d6ccf52a47fb4b7.tar.gz
coreutils-8621e44cdaf0b4c66f2204e07d6ccf52a47fb4b7.zip
maint: use GNU style for spacing
Diffstat (limited to 'src/expr.c')
-rw-r--r--src/expr.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/expr.c b/src/expr.c
index e60fb70dc..86e354929 100644
--- a/src/expr.c
+++ b/src/expr.c
@@ -558,7 +558,7 @@ require_more_args (void)
{
if (nomoreargs ())
die (EXPR_INVALID, 0, _("syntax error: missing argument after %s"),
- quotearg_n_style (0, locale_quoting_style, *(args-1)));
+ quotearg_n_style (0, locale_quoting_style, *(args - 1)));
}
@@ -674,7 +674,7 @@ eval7 (bool evaluate)
v = eval (evaluate);
if (nomoreargs ())
die (EXPR_INVALID, 0, _("syntax error: expecting ')' after %s"),
- quotearg_n_style (0, locale_quoting_style, *(args-1)));
+ quotearg_n_style (0, locale_quoting_style, *(args - 1)));
if (!nextarg (")"))
die (EXPR_INVALID, 0, _("syntax error: expecting ')' instead of %s"),
quotearg_n_style (0, locale_quoting_style, *args));