diff options
Diffstat (limited to 'src/common/jsonapi.c')
-rw-r--r-- | src/common/jsonapi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/jsonapi.c b/src/common/jsonapi.c index aa917d0fc9d..9326f805366 100644 --- a/src/common/jsonapi.c +++ b/src/common/jsonapi.c @@ -129,7 +129,7 @@ IsValidJsonNumber(const char *str, int len) */ if (*str == '-') { - dummy_lex.input = unconstify(char *, str) +1; + dummy_lex.input = unconstify(char *, str) + 1; dummy_lex.input_length = len - 1; } else |