From: Jim Meyering Date: Mon, 20 Dec 2021 20:44:44 +0000 (-0800) Subject: maint: split a long line X-Git-Tag: v9.1~164 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1cfbd4548dfb5141b461329cb521e16d7d003ae7;p=thirdparty%2Fcoreutils.git maint: split a long line * src/test.c (three_arguments): Split long line. --- diff --git a/src/test.c b/src/test.c index 00393ddd3b..47d79f4657 100644 --- a/src/test.c +++ b/src/test.c @@ -628,7 +628,8 @@ three_arguments (void) else if (STREQ (argv[pos + 1], "-a") || STREQ (argv[pos + 1], "-o")) value = expr (); else - test_syntax_error (_("%s: binary operator expected"), quote (argv[pos + 1])); + test_syntax_error (_("%s: binary operator expected"), + quote (argv[pos + 1])); return (value); }