Index: src/libcfa/iostream.c
===================================================================
--- src/libcfa/iostream.c	(revision 5f782f75b44e0c8ab5315529674351891153123e)
+++ src/libcfa/iostream.c	(revision 3e239eaac48c6e798fe5758a0a41b89809897498)
@@ -10,6 +10,6 @@
 // Created On       : Wed May 27 17:56:53 2015
 // Last Modified By : Peter A. Buhr
-// Last Modified On : Mon Sep 11 09:21:24 2017
-// Update Count     : 420
+// Last Modified On : Sun Sep 17 23:24:25 2017
+// Update Count     : 422
 //
 
@@ -34,6 +34,6 @@
 forall( dtype ostype | ostream( ostype ) )
 ostype * ?|?( ostype * os, signed char c ) {
+	if ( sepPrt( os ) ) fmt( os, "%s", sepGetCur( os ) );
 	fmt( os, "%hhd", c );
-	sepOff( os );
 	return os;
 } // ?|?
@@ -41,6 +41,6 @@
 forall( dtype ostype | ostream( ostype ) )
 ostype * ?|?( ostype * os, unsigned char c ) {
+	if ( sepPrt( os ) ) fmt( os, "%s", sepGetCur( os ) );
 	fmt( os, "%hhu", c );
-	sepOff( os );
 	return os;
 } // ?|?
