cid#318937 Array compared against 0

this returns the same type as its 3rd arg, so using "false" returns
a const char* and not a bool

Signed-off-by: Caolán McNamara <caolan.mcnamara@collabora.com>
Change-Id: Ibd46ecea82ef4587e1a2083430981976457ab874
pull/8832/head
Caolán McNamara 2024-04-23 09:29:27 +01:00 committed by Miklos Vajna
parent 01a30b03f1
commit e6de6b9f93
1 changed files with 1 additions and 1 deletions

View File

@ -2239,7 +2239,7 @@ void COOLWSD::innerInitialize(Application& self)
<< LogLevel << "] until after WSD initialization.");
}
if (getConfigValue<bool>(conf, "browser_logging", "false"))
if (getConfigValue<bool>(conf, "browser_logging", false))
{
LogToken = Util::rng::getHexString(16);
}