Chromium Code Reviews| Index: base/threading/thread_local_win.cc |
| =================================================================== |
| --- base/threading/thread_local_win.cc (revision 107905) |
| +++ base/threading/thread_local_win.cc (working copy) |
| @@ -33,7 +33,7 @@ |
| // static |
| void ThreadLocalPlatform::SetValueInSlot(SlotType& slot, void* value) { |
| if (!TlsSetValue(slot, value)) { |
| - DLOG(FATAL) << "Failed to TlsSetValue()."; |
| + LOG(FATAL) << "Failed to TlsSetValue()."; |
| } |
| } |