Removed extra newlines from several debug messages.

This commit is contained in:
Thulinma 2014-01-23 11:33:02 +01:00
parent 0fe0c1fb4f
commit 92b7a7534d
3 changed files with 12 additions and 12 deletions

View file

@ -530,7 +530,7 @@ DTSC::File::File(std::string filename, bool create){
}
created = create;
if ( !F){
DEBUG_MSG(DLVL_ERROR, "Could not open file %s\n", filename.c_str());
DEBUG_MSG(DLVL_ERROR, "Could not open file %s", filename.c_str());
return;
}
fseek(F, 0, SEEK_END);