From 921f253e9dad8e68adbfa8c45cbe862e64c142b5 Mon Sep 17 00:00:00 2001 From: Martin Mares Date: Fri, 17 Jul 2015 15:27:06 +0200 Subject: [PATCH] JSON: Better exception name --- ucw-json/parse.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ucw-json/parse.c b/ucw-json/parse.c index 7873d13f..df99ea40 100644 --- a/ucw-json/parse.c +++ b/ucw-json/parse.c @@ -29,7 +29,7 @@ void json_set_input(struct json_context *js, struct fastbuf *in) static void NONRET json_parse_error(struct json_context *js, const char *msg) { - trans_throw("ucw.js.parse", js, "%s at line %u:%u", msg, js->in_line, js->in_column); + trans_throw("ucw.json.parse", js, "%s at line %u:%u", msg, js->in_line, js->in_column); } static int json_get_char(struct json_context *js) -- 2.39.2