From 91bb75ebee061dc5c9686e01fb83c93202f420c3 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Sun, 16 Mar 2025 14:45:49 +0900 Subject: Replace TRUE/FALSE with boolean values true/false Signed-off-by: Michele Calgaro --- src/ccInstHelper.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/ccInstHelper.cpp') diff --git a/src/ccInstHelper.cpp b/src/ccInstHelper.cpp index 055e2d6..1d8194c 100644 --- a/src/ccInstHelper.cpp +++ b/src/ccInstHelper.cpp @@ -156,7 +156,7 @@ int integrateWithClearCase( const char* subCommand, const char* kdiff3CommandPat std::string kdiff3Command; kdiff3Command.reserve( wKDiff3Command.length()+1 ); kdiff3Command.resize( wKDiff3Command.length() ); - BOOL bUsedDefaultChar = FALSE; + BOOL bUsedDefaultChar = false; int successLen = WideCharToMultiByte( CP_ACP, 0, wKDiff3Command.c_str(), int(wKDiff3Command.length()), &kdiff3Command[0], int(kdiff3Command.length()), 0, &bUsedDefaultChar ); -- cgit v1.2.3