From 6b381c3ac9e4f98148449868fa41c6b344f8413d Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Sat, 21 Dec 2002 18:00:23 +0000 Subject: [PATCH] (Fformat): Add parens. --- src/editfns.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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) */) so we have to take into account what that function prints. */ /* Filter out flag value of -1. */ - thissize = MAX_10_EXP + 100 + ((precision[n] > 0) ? precision[n] : 0); + thissize = (MAX_10_EXP + 100 + + (precision[n] > 0 ? precision[n] : 0)); } else { -- 2.11.4.GIT