mirror of
https://github.com/odin-lang/Odin.git
synced 2025-12-30 18:02:02 +00:00
Fixes to ABI
This commit is contained in:
@@ -301,7 +301,7 @@ void print_query_data_as_json(QueryValue *value, bool format = true, isize inden
|
||||
}
|
||||
case Query_Integer: {
|
||||
auto v = cast(QueryValueInteger *)value;
|
||||
gb_printf("%lld", v->value);
|
||||
gb_printf("%lld", cast(long long)v->value);
|
||||
return;
|
||||
}
|
||||
case Query_Float: {
|
||||
|
||||
Reference in New Issue
Block a user