aboutsummaryrefslogtreecommitdiff
path: root/src/query_data.cpp
diff options
context:
space:
mode:
authorgingerBill <bill@gingerbill.org>2019-05-29 16:49:26 +0100
committergingerBill <bill@gingerbill.org>2019-05-29 16:49:26 +0100
commit654740d5b110328e2c6b86f8f0cbd7853e730cfa (patch)
tree81fa5d8efd7e59edb97ef52593d04c94448ec3d2 /src/query_data.cpp
parentb894e2b3788307546e330bd43304e5ff785dac51 (diff)
Fixes to ABI
Diffstat (limited to 'src/query_data.cpp')
-rw-r--r--src/query_data.cpp2
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: {