Index: libcfa/src/concurrency/locks.hfa
===================================================================
--- libcfa/src/concurrency/locks.hfa	(revision c7c178b577f3c639ac7fa0d4d991c368b2e91e39)
+++ libcfa/src/concurrency/locks.hfa	(revision b580bcc79ab67014709f2d38fb67132e54d6e92f)
@@ -54,5 +54,5 @@
 }
 
-static inline $thread * V(Semaphore0nary & this, const bool doUnpark = true) {
+static inline $thread * V(Semaphore0nary & this, bool doUnpark = true) {
 	$thread * next;
 	lock(this.lock __cfaabi_dbg_ctx2);
@@ -119,5 +119,5 @@
 static inline bool P(ThreadBenaphore & this, bool wait)   { return wait ? P(this) : tryP(this); }
 
-static inline $thread * V(ThreadBenaphore & this, const bool doUnpark = true) {
+static inline $thread * V(ThreadBenaphore & this, bool doUnpark = true) {
 	if (V(this.ben)) return 0p;
 	return V(this.sem, doUnpark);
@@ -205,5 +205,5 @@
 	this.owner = 0p;
 
-	return V(this.sem, true);
+	return V(this.sem);
 }
 
