forked from OSchip/llvm-project
[lldb] Use true instead of 0 (NFC)
Identified with modernize-use-bool-literals.
This commit is contained in:
parent
c661bd0886
commit
559463e94e
|
@ -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);
|
||||
|
||||
|
|
Loading…
Reference in New Issue