aboutsummaryrefslogtreecommitdiff
path: root/std/nil.c
diff options
context:
space:
mode:
Diffstat (limited to 'std/nil.c')
-rw-r--r--std/nil.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/std/nil.c b/std/nil.c
index 93172eb..52a2872 100644
--- a/std/nil.c
+++ b/std/nil.c
@@ -4,9 +4,7 @@
UwUVMValue uwu_nil(UwUVMArgs *args)
{
- if (args->num != 0)
- error(":nil:nil does not accept any arguments\n");
-
+ uwuutil_require_exact(":nil:nil", args, 0);
return uwunil_create();
}