Fix interface bug with invalid memory access

This commit is contained in:
2026-01-13 20:49:25 +11:00
parent 3755f0e40e
commit 6ffd01d2c3

View File

@@ -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: {