llcrashlogger: BOOL (int) to real bool

master
Lars Næsbye Christensen 2024-02-08 22:48:45 +01:00 committed by Andrey Lihatskiy
parent ba4e7b989b
commit 13bf5a2442
2 changed files with 3 additions and 3 deletions

View File

@ -50,8 +50,8 @@
#include <curl/curl.h>
#include <openssl/crypto.h>
BOOL gBreak = false;
BOOL gSent = false;
bool gBreak = false;
bool gSent = false;
int LLCrashLogger::ssl_mutex_count = 0;
LLCoreInt::HttpMutex ** LLCrashLogger::ssl_mutex_list = NULL;

View File

@ -77,7 +77,7 @@ protected:
static void ssl_locking_callback(int mode, int type, const char * file, int line);
S32 mCrashBehavior;
BOOL mCrashInPreviousExec;
bool mCrashInPreviousExec;
std::map<std::string, std::string> mFileMap;
std::string mGridName;
LLControlGroup mCrashSettings;