From 6ffd01d2c3dd521bd456474b00e73fa990f5784a Mon Sep 17 00:00:00 2001 From: Maxwell Jeffress Date: Tue, 13 Jan 2026 20:49:25 +1100 Subject: [PATCH] Fix interface bug with invalid memory access --- src/interface.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/interface.c b/src/interface.c index ac1bdf8..280c885 100644 --- a/src/interface.c +++ b/src/interface.c @@ -45,7 +45,7 @@ GroundValue groundCreateValue(GroundValueType type, ...) { switch (type) { case INT: { - return createIntGroundValue(va_arg(args, int)); + return createIntGroundValue(va_arg(args, int64_t)); break; } case DOUBLE: {