summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib.c b/lib.c
index 57ea4128..5cd5be4f 100644
--- a/lib.c
+++ b/lib.c
@@ -167,7 +167,7 @@ val identity(val obj)
static val identity_star(varg args)
{
- int index = 0;
+ cnum index = 0;
if (args_more(args, index))
return args_get(args, &index);
return nil;