Avoid a compilation warning

This commit is contained in:
Pierre Pronchery 2018-10-19 20:46:45 +02:00
parent 764edbc0bc
commit c34e49b97a

View File

@ -458,6 +458,8 @@ static int _test_helper_config_set(Locker * locker, char const * section,
/* test_helper_error */ /* test_helper_error */
static int _test_helper_error(Locker * locker, char const * message, int ret) static int _test_helper_error(Locker * locker, char const * message, int ret)
{ {
(void) locker;
return error_set_print(PROGNAME, ret, "%s", message); return error_set_print(PROGNAME, ret, "%s", message);
} }