From 7f0c3804dce7591332bbf6bd0922597ea675df44 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Mon, 18 Jan 2021 09:52:35 -0800 Subject: Checking more return values (per static analyzer) --- json.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'json.c') diff --git a/json.c b/json.c index 0719d84..6ec9fcd 100644 --- a/json.c +++ b/json.c @@ -51,7 +51,7 @@ static int _json_match(const char *text, match_t *m, int comma, unsigned int ver // void json_match(const char *text, match_t *m, unsigned int verbose) { - _json_match(text, m, 0, verbose); + (void)_json_match(text, m, 0, verbose); } // vim: ts=4 sw=0 et cino=L2,l1,(0,W4,m1 -- cgit v1.2.3