diff options
Diffstat (limited to 'std/ref.c')
-rw-r--r-- | std/ref.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -4,8 +4,7 @@ UwUVMValue uwu_call(UwUVMArgs *args) { - if (args->num < 1) - error(":ref:call requires at least one argument\n"); + uwuutil_require_min(":ref:call", args, 1); UwUVMValue value = uwuvm_get_arg(args, 0); |