summaryrefslogtreecommitdiffstats
path: root/base
diff options
context:
space:
mode:
authorbrettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-10-31 00:41:31 +0000
committerbrettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-10-31 00:41:31 +0000
commit633f276b00aa01e60fcc371e8dfe83d809ce1271 (patch)
treed1165f940c9c447117104a2bde46d60d38013ec6 /base
parente728d1dbb22389af68d1adad7b18b985cde3bba1 (diff)
downloadchromium_src-633f276b00aa01e60fcc371e8dfe83d809ce1271.zip
chromium_src-633f276b00aa01e60fcc371e8dfe83d809ce1271.tar.gz
chromium_src-633f276b00aa01e60fcc371e8dfe83d809ce1271.tar.bz2
Revert log change to thread_local_win to fix an internal compiler error when
doing official Chrome builds. TBR=1aforge Review URL: http://codereview.chromium.org/8424004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@107910 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base')
-rw-r--r--base/threading/thread_local_win.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/base/threading/thread_local_win.cc b/base/threading/thread_local_win.cc
index 32cceeb..56d3a3a 100644
--- a/base/threading/thread_local_win.cc
+++ b/base/threading/thread_local_win.cc
@@ -33,7 +33,7 @@ void* ThreadLocalPlatform::GetValueFromSlot(SlotType& slot) {
// static
void ThreadLocalPlatform::SetValueInSlot(SlotType& slot, void* value) {
if (!TlsSetValue(slot, value)) {
- DLOG(FATAL) << "Failed to TlsSetValue().";
+ LOG(FATAL) << "Failed to TlsSetValue().";
}
}