projects
/
platform
/
upstream
/
coreutils.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
65a9156
)
(init_store_cols): Put parens around ... ? ... : ... expr.
author
Jim Meyering
<jim@meyering.net>
Thu, 5 Dec 1996 05:01:30 +0000
(
05:01
+0000)
committer
Jim Meyering
<jim@meyering.net>
Thu, 5 Dec 1996 05:01:30 +0000
(
05:01
+0000)
src/pr.c
patch
|
blob
|
history
diff --git
a/src/pr.c
b/src/pr.c
index 85c833717d2653a2fc89017275ca6bf1b5837f9b..024c4f8bf2d24e279c7feb2775692b54c21fe496 100644
(file)
--- 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);
}