From: Pádraig Brady Date: Mon, 30 Dec 2024 20:33:17 +0000 (+0000) Subject: maint: fix syntax-check error X-Git-Tag: v9.6~39 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=02a24f8aad70b542d06680d308f105d6409d9979;p=thirdparty%2Fcoreutils.git maint: fix syntax-check error * src/seq.c: Adjust line length. --- diff --git a/src/seq.c b/src/seq.c index 63bdc5d943..8add3b9b58 100644 --- 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)