aboutsummaryrefslogtreecommitdiff
path: root/common/json.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'common/json.cpp')
-rw-r--r--common/json.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/json.cpp b/common/json.cpp
index 5f63d3fe1f..f95a44f8fe 100644
--- a/common/json.cpp
+++ b/common/json.cpp
@@ -988,7 +988,7 @@ String JSONValue::stringifyImpl(size_t const indentDepth) const {
case JSONType_IntegerNumber: {
char str[80];
- sprintf(str, "%d", _integerValue);
+ sprintf(str, "%lld", _integerValue);
ret_string = str;
break;
}