| Index: third_party/crashpad/crashpad/util/synchronization/semaphore_mac.cc
|
| diff --git a/third_party/crashpad/crashpad/util/synchronization/semaphore_mac.cc b/third_party/crashpad/crashpad/util/synchronization/semaphore_mac.cc
|
| index e8a79ab4c2dc2f58fc6fad1a8247cb705a9b7ec9..578f631cda7d3ff8210dd1ce69855680068550fc 100644
|
| --- a/third_party/crashpad/crashpad/util/synchronization/semaphore_mac.cc
|
| +++ b/third_party/crashpad/crashpad/util/synchronization/semaphore_mac.cc
|
| @@ -20,7 +20,8 @@ namespace crashpad {
|
|
|
| Semaphore::Semaphore(int value)
|
| : semaphore_(dispatch_semaphore_create(value)) {
|
| - CHECK(semaphore_) << "dispatch_semaphore_create";
|
| + // dispatch_semaphore_create
|
| + CHECK(semaphore_);
|
| }
|
|
|
| Semaphore::~Semaphore() {
|
|
|