From ebfe50c31d62d647b586619f56aa754971cfdf69 Mon Sep 17 00:00:00 2001 From: Kaz Kylheku Date: Mon, 3 Oct 2016 07:15:08 -0700 Subject: Coding convention fix in plus function. * arith.c (plus): Eliminate compound statement braces around case that consists of one return statement. --- arith.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'arith.c') diff --git a/arith.c b/arith.c index ef48d1f9..28ca5248 100644 --- a/arith.c +++ b/arith.c @@ -447,9 +447,7 @@ tail: return normalize(n); } case TYPE_PAIR(FLNUM, FLNUM): - { - return flo(c_flo(anum) + c_flo(bnum)); - } + return flo(c_flo(anum) + c_flo(bnum)); case TYPE_PAIR(BGNUM, FLNUM): anum = flo_int(anum); goto tail; -- cgit v1.2.3