]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
maint: fix syntax-check error
authorPádraig Brady <P@draigBrady.com>
Mon, 30 Dec 2024 20:33:17 +0000 (20:33 +0000)
committerPádraig Brady <P@draigBrady.com>
Mon, 30 Dec 2024 20:34:23 +0000 (20:34 +0000)
* src/seq.c: Adjust line length.

src/seq.c

index 63bdc5d943a36e10b2dd3376d4d7e33db5bb4046..8add3b9b58b6ca7f4b91fa433acfa785ec014843 100644 (file)
--- a/src/seq.c
+++ b/src/seq.c
@@ -188,10 +188,10 @@ scan_arg (char const *arg)
           fraction_len = strcspn (decimal_point + 1, "eE");
           if (fraction_len <= INT_MAX)
             ret.precision = fraction_len;
-          ret.width += (fraction_len == 0                      /* #.  -> #   */
+          ret.width += (fraction_len == 0                       /* #.  -> #   */
                         ? -1
-                        : (decimal_point == arg                /* .#  -> 0.# */
-                           || ! c_isdigit (decimal_point[-1]))); /* -.# -> 0.# */
+                        : (decimal_point == arg                 /* .#  -> 0.# */
+                           || !c_isdigit (decimal_point[-1]))); /* -.# -> 0.# */
         }
       char const *e = strchr (arg, 'e');
       if (! e)