Index: libcfa/src/bits/containers.hfa
===================================================================
--- libcfa/src/bits/containers.hfa	(revision 85871478e2c3bde78417caf29d8014cca369458a)
+++ libcfa/src/bits/containers.hfa	(revision 1717b129c300cd52265bfb592875fa643f3b019e)
@@ -151,5 +151,5 @@
 		}
 
-		void append( __queue(T) & this, T * val ) with( this ) {
+		void append( __queue(T) & this, T * val ) with(this) {
 			verify(this.tail != 0p);
 			verify(*this.tail == 1p);
@@ -161,8 +161,8 @@
 		T * peek( __queue(T) & this ) {
 			verify(*this.tail == 1p);
-			T * front = this.head;
-			if( front != 1p ) {
+			T * frontnode = this.head;
+			if( frontnode != 1p ) {
 				verify(*this.tail == 1p);
-				return front;
+				return frontnode;
 			}
 			verify(*this.tail == 1p);
Index: libcfa/src/bits/sequence.hfa
===================================================================
--- libcfa/src/bits/sequence.hfa	(revision 85871478e2c3bde78417caf29d8014cca369458a)
+++ libcfa/src/bits/sequence.hfa	(revision 1717b129c300cd52265bfb592875fa643f3b019e)
@@ -30,7 +30,7 @@
 	// PUBLIC
 
-	void ?{}( Seqable & sq ) with( sq ) {
+	void ?{}( Seqable & sq ) {
 		((Colable &)sq){};
-		back = 0p;
+		sq.back = 0p;
 	} // post: ! listed()
 
Index: libcfa/src/fstream.hfa
===================================================================
--- libcfa/src/fstream.hfa	(revision 85871478e2c3bde78417caf29d8014cca369458a)
+++ libcfa/src/fstream.hfa	(revision 1717b129c300cd52265bfb592875fa643f3b019e)
@@ -16,4 +16,5 @@
 #pragma once
 
+#include "bits/weakso_locks.hfa"
 #include "iostream.hfa"
 #include <exception.hfa>
@@ -34,4 +35,5 @@
 	char $separator[sepSize];
 	char $tupleSeparator[sepSize];
+//	multiple_acquisition_lock lock;
 }; // ofstream
 
