| Index: base/threading/worker_pool_win.cc
|
| diff --git a/base/threading/worker_pool_win.cc b/base/threading/worker_pool_win.cc
|
| index 8dd323b5b1ffb96f9e7f0c9a8f689394eccb1172..fa11dc5a7636d49d7d98f8c982493b253dfad28c 100644
|
| --- a/base/threading/worker_pool_win.cc
|
| +++ b/base/threading/worker_pool_win.cc
|
| @@ -48,7 +48,7 @@ bool PostTaskInternal(PendingTask* pending_task, bool task_is_slow) {
|
| flags |= WT_EXECUTELONGFUNCTION;
|
|
|
| if (!QueueUserWorkItem(WorkItemCallback, pending_task, flags)) {
|
| - DLOG_GETLASTERROR(ERROR) << "QueueUserWorkItem failed";
|
| + DPLOG(ERROR) << "QueueUserWorkItem failed";
|
| delete pending_task;
|
| return false;
|
| }
|
|
|