From b66d0d04c6060515c7104330e2888ecdfc8594ca Mon Sep 17 00:00:00 2001 From: "Alfred E. Heggestad" Date: Wed, 28 Oct 2015 18:14:05 +0000 Subject: [PATCH] json: fix typo (patch from Simon Josefsson) --- src/json/decode.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/json/decode.c b/src/json/decode.c index 488f2f7..62b746d 100644 --- a/src/json/decode.c +++ b/src/json/decode.c @@ -167,7 +167,7 @@ static int decode_value(struct json_value *val, const struct pl *pl) val->type = JSON_NULL; } else { - re_printf("json: value of unkown type: <%r>\n", pl); + re_printf("json: value of unknown type: <%r>\n", pl); err = EBADMSG; }