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:
5
src/pr.c
5
src/pr.c
@@ -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);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user