summaryrefslogtreecommitdiffstats
path: root/base/shared_memory_win.cc
diff options
context:
space:
mode:
Diffstat (limited to 'base/shared_memory_win.cc')
-rw-r--r--base/shared_memory_win.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/base/shared_memory_win.cc b/base/shared_memory_win.cc
index 526132c..3e5ad36 100644
--- a/base/shared_memory_win.cc
+++ b/base/shared_memory_win.cc
@@ -206,7 +206,7 @@ bool SharedMemory::Lock(uint32 timeout_ms, SECURITY_ATTRIBUTES* sec_attr) {
name.append(L"lock");
lock_ = CreateMutex(sec_attr, FALSE, name.c_str());
if (lock_ == NULL) {
- PLOG(ERROR) << "Could not create mutex.";
+ DPLOG(ERROR) << "Could not create mutex.";
return false; // there is nothing good we can do here.
}
}