aboutsummaryrefslogtreecommitdiff
path: root/json.c
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2021-01-18 09:52:35 -0800
committerBruce Hill <bruce@bruce-hill.com>2021-01-18 09:52:35 -0800
commit7f0c3804dce7591332bbf6bd0922597ea675df44 (patch)
treef165413a246604b61ba6567e626ed54a1d470b04 /json.c
parent2622d44dc4247766089c2e455d798070b3800b39 (diff)
Checking more return values (per static analyzer)
Diffstat (limited to 'json.c')
-rw-r--r--json.c2
1 files changed, 1 insertions, 1 deletions
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