From ef56905cb0f62080928172816dc0d147e5ccfcc4 Mon Sep 17 00:00:00 2001 From: phantom Date: Thu, 6 Sep 2001 09:26:28 +0000 Subject: correctly wrap macros with { } --- lib/libc/stdlib/strfmon.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'lib/libc/stdlib') diff --git a/lib/libc/stdlib/strfmon.c b/lib/libc/stdlib/strfmon.c index 70d3962..206fa76 100644 --- a/lib/libc/stdlib/strfmon.c +++ b/lib/libc/stdlib/strfmon.c @@ -297,10 +297,11 @@ strfmon(s, maxsize, format, va_alist) PRINT(' '); if (sign_posn == 0) { - if (flags & IS_NEGATIVE) + if (flags & IS_NEGATIVE) { PRINT('('); - else + } else { PRINT(' '); + } } if (cs_precedes == 1) { -- cgit v1.1