From: Jim Meyering Date: Thu, 5 Dec 1996 05:01:30 +0000 (+0000) Subject: (init_store_cols): Put parens around ... ? ... : ... expr. X-Git-Tag: TEXTUTILS-1_19q~21 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f86df3250c73966f660bb500affd06840b85322a;p=thirdparty%2Fcoreutils.git (init_store_cols): Put parens around ... ? ... : ... expr. --- diff --git a/src/pr.c b/src/pr.c index 85c833717d..024c4f8bf2 100644 --- a/src/pr.c +++ b/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); }