Index: src/libcfa/fstream.c
===================================================================
--- src/libcfa/fstream.c	(revision d1b9d78dbb8ce4a49ec02c3d7f5de714bde90513)
+++ src/libcfa/fstream.c	(revision 5d125e49aa2f2ff1eefe1c255ce478ca86a872a5)
@@ -9,7 +9,7 @@
 // Author           : Peter A. Buhr
 // Created On       : Wed May 27 17:56:53 2015
-// Last Modified By : Rob Schluntz
-// Last Modified On : Mon May 02 15:14:52 2016
-// Update Count     : 187
+// Last Modified By : Peter A. Buhr
+// Last Modified On : Fri Jul 15 13:35:29 2016
+// Update Count     : 188
 //
 
@@ -92,7 +92,7 @@
 
 int prtfmt( ofstream * os, const char fmt[], ... ) {
-    va_list args;
-    va_start( args, fmt );
-    int len = vfprintf( (FILE *)(os->file), fmt, args );
+	va_list args;
+	va_start( args, fmt );
+	int len = vfprintf( (FILE *)(os->file), fmt, args );
 	if ( len == EOF ) {
 		if ( ferror( (FILE *)(os->file) ) ) {
@@ -101,5 +101,5 @@
 		} // if
 	} // if
-    va_end( args );
+	va_end( args );
 
 	sepReset( os );										// reset separator
@@ -170,8 +170,8 @@
 
 int scanfmt( ifstream * is, const char fmt[], ... ) {
-    va_list args;
+	va_list args;
 
-    va_start( args, fmt );
-    int len = vfscanf( (FILE *)(is->file), fmt, args );
+	va_start( args, fmt );
+	int len = vfscanf( (FILE *)(is->file), fmt, args );
 	if ( len == EOF ) {
 		if ( ferror( (FILE *)(is->file) ) ) {
@@ -180,5 +180,5 @@
 		} // if
 	} // if
-    va_end( args );
+	va_end( args );
 	return len;
 } // prtfmt
