$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
From: troy_at_[hidden]
Date: 2007-05-27 08:12:46
Author: troy
Date: 2007-05-27 08:12:46 EDT (Sun, 27 May 2007)
New Revision: 4310
URL: http://svn.boost.org/trac/boost/changeset/4310
Log:
Fix sloppy commit.
Text files modified: 
   sandbox-branches/boost-cmake/boost_1_34_0/libs/test/test/prg_exec_fail3.cpp |     3 ++-                                     
   1 files changed, 2 insertions(+), 1 deletions(-)
Modified: sandbox-branches/boost-cmake/boost_1_34_0/libs/test/test/prg_exec_fail3.cpp
==============================================================================
--- sandbox-branches/boost-cmake/boost_1_34_0/libs/test/test/prg_exec_fail3.cpp	(original)
+++ sandbox-branches/boost-cmake/boost_1_34_0/libs/test/test/prg_exec_fail3.cpp	2007-05-27 08:12:46 EDT (Sun, 27 May 2007)
@@ -14,6 +14,7 @@
 // ***************************************************************************
 
 #include <cassert>
+#include <stdio.h>
 
 int cpp_main( int, char *[] )  // note the name
 {
@@ -22,7 +23,7 @@
   assert( div != 0 );
 
 #if NDEBUG
-  printf("assert check turned off under NDEBUG");
+  printf("assert check turned off under NDEBUG\n");
   return 1;
 #endif