| Index: base/process/kill_mac.cc
|
| diff --git a/base/process/kill_mac.cc b/base/process/kill_mac.cc
|
| index 8c424009864951636e7e6501341931976beab670..a4e0a14cf8f3f620e9fb23ac6b97145c64b5ecdb 100644
|
| --- a/base/process/kill_mac.cc
|
| +++ b/base/process/kill_mac.cc
|
| @@ -66,8 +66,8 @@ void BlockingReap(pid_t child) {
|
| // work in that case, but waitpid won't, and killing a non-child might not be
|
| // the best approach.
|
| void WaitForChildToDie(pid_t child, int timeout) {
|
| - DCHECK(child > 0);
|
| - DCHECK(timeout > 0);
|
| + DCHECK_GT(child, 0);
|
| + DCHECK_GT(timeout, 0);
|
|
|
| // DON'T ADD ANY EARLY RETURNS TO THIS FUNCTION without ensuring that
|
| // |child| has been reaped. Specifically, even if a kqueue, kevent, or other
|
|
|