Split the fatal_assert message into two lines

(closes #78)
This commit is contained in:
Keegan McAllister
2012-03-23 00:43:09 -04:00
committed by Keith Winstein
parent 84b4330ba2
commit a9b5850019
+1 -1
View File
@@ -24,7 +24,7 @@
static void fatal_error( const char *expression, const char *file, int line, const char *function )
{
fprintf( stderr, "Fatal assertion failure in function %s at %s:%d, failed test: %s\n",
fprintf( stderr, "Fatal assertion failure in function %s at %s:%d\nFailed test: %s\n",
function, file, line, expression );
exit( 2 );
}