From: Collin Funk Date: Sat, 26 Jul 2025 07:17:16 +0000 (-0700) Subject: maint: avoid syntax-check failure from previous commit X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ba8e55ea95c6e13ec1ab05ef3c9060c55f5c7043;p=thirdparty%2Fcoreutils.git maint: avoid syntax-check failure from previous commit * src/test.c (binary_operator): Place string argument on a separate line to avoid sc_error_quotes syntax-check failure. --- diff --git a/src/test.c b/src/test.c index cb57324bb5..fd9aa0d294 100644 --- a/src/test.c +++ b/src/test.c @@ -329,7 +329,8 @@ binary_operator (bool l_is_l, enum binop bop) case NT_BINOP: case OT_BINOP: { if (l_is_l | r_is_l) - test_syntax_error (_("%s does not accept -l"), argv[op]); + test_syntax_error (_("%s does not accept -l"), + argv[op]); int cmp = timespec_cmp (get_mtime (argv[op - 1]), get_mtime (argv[op + 1])); return bop == OT_BINOP ? cmp < 0 : cmp > 0;