summaryrefslogtreecommitdiff
path: root/automation/source/simplecm/simplecm.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'automation/source/simplecm/simplecm.cxx')
-rw-r--r--automation/source/simplecm/simplecm.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/automation/source/simplecm/simplecm.cxx b/automation/source/simplecm/simplecm.cxx
index 39f86436a9a3..2cc5b93e26f0 100644
--- a/automation/source/simplecm/simplecm.cxx
+++ b/automation/source/simplecm/simplecm.cxx
@@ -43,10 +43,10 @@
#include <stdio.h>
void debug_printf( const char *chars )
{
- static BOOL bPrint = (getenv("DEBUG") != NULL);
+ static bool bPrint = (getenv("DEBUG") != NULL);
if ( bPrint )
{
- printf( "%c\n", chars );
+ printf( "%s\n", chars );
fflush( stdout );
}
}