From 28af0de76403f46c06b3a39952ba953433d0372e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20Sur=C3=BD?= Date: Wed, 29 May 2019 13:37:10 +0200 Subject: [PATCH] isc_app_reload doesn't return value, don't use return() there --- lib/isc/app.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/isc/app.c b/lib/isc/app.c index 6d39078d08..48a6eab79f 100644 --- a/lib/isc/app.c +++ b/lib/isc/app.c @@ -477,7 +477,7 @@ isc_app_ctxsuspend(isc_appctx_t *ctx) { void isc_app_reload(void) { - return (isc_app_ctxsuspend(&isc_g_appctx)); + isc_app_ctxsuspend(&isc_g_appctx); } void