From: Victor Julien Date: Tue, 23 Feb 2016 08:52:09 +0000 (+0100) Subject: conf: explicitly ignore retval (CID 1353490) X-Git-Tag: suricata-3.0.1RC1~122 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fb90358e1796915fa63b671c7fb687cfc17bb53f;p=thirdparty%2Fsuricata.git conf: explicitly ignore retval (CID 1353490) --- diff --git a/src/output-json.c b/src/output-json.c index 9106ca2bee..89311bdd92 100644 --- a/src/output-json.c +++ b/src/output-json.c @@ -435,7 +435,7 @@ OutputCtx *OutputJsonInitCtx(ConfNode *conf) "Please set sensor-name globally."); } else { - ConfGet("sensor-name", (char **)&sensor_name); + (void)ConfGet("sensor-name", (char **)&sensor_name); } if (unlikely(json_ctx == NULL)) {