]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
maint: avoid syntax-check failure from previous commit
authorCollin Funk <collin.funk1@gmail.com>
Sat, 26 Jul 2025 07:17:16 +0000 (00:17 -0700)
committerCollin Funk <collin.funk1@gmail.com>
Sat, 26 Jul 2025 07:17:16 +0000 (00:17 -0700)
* src/test.c (binary_operator): Place string argument on a separate line
to avoid sc_error_quotes syntax-check failure.

src/test.c

index cb57324bb54acf6a6003436509b5e7d695ae3532..fd9aa0d29487da9fd4c3758b45c1c31f8c5a8b03 100644 (file)
@@ -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;