From b34e9a275cbc4c2a58092998d24c39bb018ba9a7 Mon Sep 17 00:00:00 2001 From: Calvin Rose Date: Wed, 28 Nov 2018 16:38:48 -0500 Subject: [PATCH] Update whitespace issue. --- src/core/cfuns.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/core/cfuns.c b/src/core/cfuns.c index 26d31dea..e5cc4535 100644 --- a/src/core/cfuns.c +++ b/src/core/cfuns.c @@ -40,7 +40,8 @@ static int minarity2(JanetFopts opts, JanetSlot *args) { static int fixarity2(JanetFopts opts, JanetSlot *args) { (void) opts; return janet_v_count(args) == 2; -}static int fixarity3(JanetFopts opts, JanetSlot *args) { +} +static int fixarity3(JanetFopts opts, JanetSlot *args) { (void) opts; return janet_v_count(args) == 3; }