mirror of
git://git.sv.gnu.org/coreutils.git
synced 2026-02-13 02:42:18 +02:00
maint: fix syntax-check error
* src/seq.c: Adjust line length.
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user