Index: src/Common/Assert.cc
===================================================================
--- src/Common/Assert.cc	(revision 550a3385540fe0c2834b682893eb6e8280c52af1)
+++ src/Common/Assert.cc	(revision 57f408ebfa7e276870a937eea1a8be092c0af69b)
@@ -1,10 +1,10 @@
-// 
+//
 // Cforall Version 1.0.0 Copyright (C) 2015 University of Waterloo
 //
 // The contents of this file are covered under the licence agreement in the
 // file "LICENCE" distributed with Cforall.
-// 
-// Assert.cc -- 
-// 
+//
+// Assert.cc --
+//
 // Author           : Peter A. Buhr
 // Created On       : Thu Aug 18 13:26:59 2016
@@ -12,5 +12,5 @@
 // Last Modified On : Fri Aug 19 17:07:08 2016
 // Update Count     : 10
-// 
+//
 
 #include <assert.h>
@@ -35,4 +35,6 @@
 	va_start( args, fmt );
 	vfprintf( stderr, fmt, args );
+	va_end( args );
+	fprintf( stderr, "\n" );
 	abort();
 }
@@ -43,3 +45,2 @@
 // compile-command: "make install" //
 // End:  //
-
Index: src/libcfa/assert.c
===================================================================
--- src/libcfa/assert.c	(revision 550a3385540fe0c2834b682893eb6e8280c52af1)
+++ src/libcfa/assert.c	(revision 57f408ebfa7e276870a937eea1a8be092c0af69b)
@@ -37,4 +37,6 @@
 		va_start( args, fmt );
 		vfprintf( stderr, fmt, args );
+		va_end( args );
+		fprintf( stderr, "\n" );
 		abort();
 	}
