aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/editfns.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/editfns.c b/src/editfns.c
index 6deb9b96f8a..6539cd11d45 100644
--- a/src/editfns.c
+++ b/src/editfns.c
@@ -3386,7 +3386,8 @@ usage: (format STRING &rest OBJECTS) */)
3386 so we have to take into account what that function 3386 so we have to take into account what that function
3387 prints. */ 3387 prints. */
3388 /* Filter out flag value of -1. */ 3388 /* Filter out flag value of -1. */
3389 thissize = MAX_10_EXP + 100 + ((precision[n] > 0) ? precision[n] : 0); 3389 thissize = (MAX_10_EXP + 100
3390 + (precision[n] > 0 ? precision[n] : 0));
3390 } 3391 }
3391 else 3392 else
3392 { 3393 {