diff options
| author | gingerBill <bill@gingerbill.org> | 2019-05-29 16:49:26 +0100 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2019-05-29 16:49:26 +0100 |
| commit | 654740d5b110328e2c6b86f8f0cbd7853e730cfa (patch) | |
| tree | 81fa5d8efd7e59edb97ef52593d04c94448ec3d2 /src/query_data.cpp | |
| parent | b894e2b3788307546e330bd43304e5ff785dac51 (diff) | |
Fixes to ABI
Diffstat (limited to 'src/query_data.cpp')
| -rw-r--r-- | src/query_data.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/query_data.cpp b/src/query_data.cpp index 5a928cb31..8e9cf5f33 100644 --- a/src/query_data.cpp +++ b/src/query_data.cpp @@ -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: { |