From f38d1a19430470396b930276becfd35722361e3e Mon Sep 17 00:00:00 2001 From: bart Date: Sun, 31 May 2009 11:54:14 +0000 Subject: Fixed a compiler warning. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@10178 a5019735-40e9-0310-863c-91ae7b9d1cf9 --- drd/tests/tsan_thread_wrappers_pthread.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'drd') diff --git a/drd/tests/tsan_thread_wrappers_pthread.h b/drd/tests/tsan_thread_wrappers_pthread.h index a827d90cb..137ad454f 100644 --- a/drd/tests/tsan_thread_wrappers_pthread.h +++ b/drd/tests/tsan_thread_wrappers_pthread.h @@ -569,7 +569,7 @@ class BlockingCounter { public: explicit BlockingCounter(int initial_count) : count_(initial_count) {} - bool DecrementCount() { + void DecrementCount() { MutexLock lock(&mu_); count_--; } -- cgit v1.2.3