Fixes to ABI

This commit is contained in:
gingerBill
2019-05-29 16:49:26 +01:00
parent b894e2b378
commit 654740d5b1
3 changed files with 16 additions and 17 deletions

View File

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