diff options
author | Thomas Arnhold <thomas@arnhold.org> | 2011-02-07 17:31:00 +0100 |
---|---|---|
committer | Thomas Arnhold <thomas@arnhold.org> | 2011-02-07 17:33:10 +0100 |
commit | b4286deec9bb63d2c36ca174ac6a9f2d37ee14a5 (patch) | |
tree | 72abb03cd0de8b71877fa25da750f5450d16a8bf /automation | |
parent | ba11d549dca2a04a220b59aaf9223ee8f7043da0 (diff) |
WaE: format not a string literal and no format arguments
Diffstat (limited to 'automation')
-rw-r--r-- | automation/source/simplecm/simplecm.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/automation/source/simplecm/simplecm.cxx b/automation/source/simplecm/simplecm.cxx index 26c8d6af0585..0e51768361c5 100644 --- a/automation/source/simplecm/simplecm.cxx +++ b/automation/source/simplecm/simplecm.cxx @@ -45,7 +45,7 @@ void debug_printf( const char *chars ) static BOOL bPrint = (getenv("DEBUG") != NULL); if ( bPrint ) { - printf( chars ); + printf( "%c\n", chars ); fflush( stdout ); } } |