| Index: base/synchronization/waitable_event_win.cc
|
| diff --git a/base/synchronization/waitable_event_win.cc b/base/synchronization/waitable_event_win.cc
|
| index 8259cb74cfc639506a394c9209c1661e48b9c654..04746b597b4cd7757268fc3466738903f65c9df4 100644
|
| --- a/base/synchronization/waitable_event_win.cc
|
| +++ b/base/synchronization/waitable_event_win.cc
|
| @@ -92,7 +92,7 @@ size_t WaitableEvent::WaitMany(WaitableEvent** events, size_t count) {
|
| FALSE, // don't wait for all the objects
|
| INFINITE); // no timeout
|
| if (result >= WAIT_OBJECT_0 + count) {
|
| - DLOG_GETLASTERROR(FATAL) << "WaitForMultipleObjects failed";
|
| + DPLOG(FATAL) << "WaitForMultipleObjects failed";
|
| return 0;
|
| }
|
|
|
|
|