From 09d398c748c2707918c9f531b91d161b08cb1163 Mon Sep 17 00:00:00 2001 From: Elias Fleckenstein Date: Thu, 30 Dec 2021 14:28:19 +0100 Subject: Code format --- std/bool.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'std/bool.c') diff --git a/std/bool.c b/std/bool.c index cb4082b..80aade5 100644 --- a/std/bool.c +++ b/std/bool.c @@ -55,7 +55,7 @@ UwUVMValue uwu_equal(UwUVMArgs *args) for (size_t i = 1; i < args->num; i++) if (get_bool_arg(args, i) != value) return uwubool_create(false); - + return uwubool_create(true); } @@ -71,7 +71,7 @@ UwUVMValue uwu_true(UwUVMArgs *args) { if (args->num != 0) error("error: :bool:true does not take any arguments\n"); - + return uwubool_create(true); } -- cgit v1.2.3