[lldb] Use true instead of 0 (NFC)

Identified with modernize-use-bool-literals.
This commit is contained in:
Kazu Hirata 2022-07-24 12:27:06 -07:00
parent c661bd0886
commit 559463e94e
1 changed files with 1 additions and 1 deletions

View File

@ -172,7 +172,7 @@ MonitorChildProcessThreadFunction(::pid_t pid,
::sigaction(SIGUSR1, &sigUsr1Action, nullptr);
#endif // __linux__
while(1) {
while (true) {
log = GetLog(LLDBLog::Process);
LLDB_LOG(log, "::waitpid({0}, &status, 0)...", pid);