1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-04-19 18:26:32 +02:00

(init_store_cols): Put parens around ... ? ... : ... expr.

This commit is contained in:
Jim Meyering
1996-12-05 05:01:30 +00:00
parent 65a915647c
commit f86df3250c

View File

@@ -1651,8 +1651,9 @@ init_store_cols (void)
if (buff != NULL)
free (buff);
buff_allocated = use_col_separator ? 2 * chars_if_truncate
: chars_if_truncate; /* Tune this. */
buff_allocated = (use_col_separator
? 2 * chars_if_truncate
: chars_if_truncate); /* Tune this. */
buff = (char *) xmalloc (buff_allocated);
}