]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
change to bool constants; also fixed style error
authorEvan Hunt <each@isc.org>
Fri, 19 Oct 2018 03:42:25 +0000 (20:42 -0700)
committerEvan Hunt <each@isc.org>
Fri, 19 Oct 2018 03:42:25 +0000 (20:42 -0700)
lib/isc/win32/app.c

index d43d457f17a807f335e6eb089bde9a3d4c47b36d..299374dff51c059c56eaf2077ea146428e465908 100644 (file)
@@ -253,10 +253,12 @@ isc_app_ctxrun(isc_appctx_t *ctx0) {
 isc_result_t
 isc_app_run(void) {
        isc_result_t result;
-       is_running = ISC_TRUE;
+
+       is_running = true;
        result = isc_app_ctxrun((isc_appctx_t *)&isc_g_appctx);
-       is_running = ISC_FALSE;
-       return result;
+       is_running = false;
+
+       return (result);
 }
 
 bool