From 4ca3c19ee369650b684f0b3ca7531a3b459a0521 Mon Sep 17 00:00:00 2001 From: Johan Wikman Date: Tue, 21 Mar 2017 13:23:04 +0200 Subject: [PATCH] Use [true|false] instead of [TRUE|FALSE] --- server/core/gateway.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server/core/gateway.cc b/server/core/gateway.cc index cb15c5f67..c57c7a9ed 100644 --- a/server/core/gateway.cc +++ b/server/core/gateway.cc @@ -104,7 +104,7 @@ static int pidfd = PIDFD_CLOSED; /** * exit flag for log flusher. */ -static bool do_exit = FALSE; +static bool do_exit = false; /** * If MaxScale is started to run in daemon process the value is true. @@ -2128,7 +2128,7 @@ int maxscale_shutdown() static void log_flush_shutdown(void) { - do_exit = TRUE; + do_exit = true; }