Index: src/libcfa/concurrency/monitor.c
===================================================================
--- src/libcfa/concurrency/monitor.c	(revision f80ab4529dbe82f7a1088d3ef8ae7991c99ff14f)
+++ src/libcfa/concurrency/monitor.c	(revision 9c59cd48193768705e66136cbb6ac4371561090c)
@@ -144,6 +144,6 @@
 
 	unsigned short count = this->monitor_count;
-	unsigned int blarg_recursions[ count ];		//Save the current recursion levels to restore them later
-	spinlock *   blarg_locks     [ count ];		//We need to pass-in an array of locks to ScheduleInternal
+	unsigned int recursions[ count ];		//Save the current recursion levels to restore them later
+	spinlock *   locks     [ count ];		//We need to pass-in an array of locks to ScheduleInternal
 
 	LIB_DEBUG_PRINT_SAFE("count %i\n", count);
@@ -166,6 +166,6 @@
 	append( &this->blocked, &waiter );
 
-	lock_all( this->monitors, blarg_locks, count );
-	save_recursion( this->monitors, blarg_recursions, count );
+	lock_all( this->monitors, locks, count );
+	save_recursion( this->monitors, recursions, count );
 	//DON'T unlock, ask the kernel to do it
 
@@ -185,6 +185,6 @@
 	LIB_DEBUG_PRINT_SAFE("\n");
 
-	//Everything is ready to go to sleep
-	ScheduleInternal( blarg_locks, count, threads, thread_count );
+	// Everything is ready to go to sleep
+	ScheduleInternal( locks, count, threads, thread_count );
 
 
@@ -193,7 +193,7 @@
 
 	//We are back, restore the owners and recursions
-	lock_all( blarg_locks, count );
-	restore_recursion( this->monitors, blarg_recursions, count );
-	unlock_all( blarg_locks, count );
+	lock_all( locks, count );
+	restore_recursion( this->monitors, recursions, count );
+	unlock_all( locks, count );
 }
 
