]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
isc_app_reload doesn't return value, don't use return() there
authorOndřej Surý <ondrej@sury.org>
Wed, 29 May 2019 11:37:10 +0000 (13:37 +0200)
committerOndřej Surý <ondrej@sury.org>
Thu, 20 Jun 2019 16:52:27 +0000 (18:52 +0200)
lib/isc/app.c

index 6d39078d08260298ce0299f53bbd459c1544391b..48a6eab79f1cf030ed0685a1125d7349b9a014e3 100644 (file)
@@ -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