diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/json.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/json.c b/src/json.c index 7d6d5314270..03468e9f338 100644 --- a/src/json.c +++ b/src/json.c | |||
| @@ -304,8 +304,8 @@ json_parse_error (const json_error_t *error) | |||
| 304 | #endif | 304 | #endif |
| 305 | xsignal (symbol, | 305 | xsignal (symbol, |
| 306 | list5 (json_build_string (error->text), | 306 | list5 (json_build_string (error->text), |
| 307 | json_build_string (error->source), make_fixed_natnum (error->line), | 307 | json_build_string (error->source), INT_TO_INTEGER (error->line), |
| 308 | make_fixed_natnum (error->column), make_fixed_natnum (error->position))); | 308 | INT_TO_INTEGER (error->column), INT_TO_INTEGER (error->position))); |
| 309 | } | 309 | } |
| 310 | 310 | ||
| 311 | static void | 311 | static void |