removed unneeded newlines

This commit is contained in:
Jack Andersen
2015-07-03 20:43:41 -10:00
parent a656c5d4c9
commit f093f633b4
4 changed files with 13 additions and 13 deletions

View File

@@ -36,9 +36,9 @@ public:
if (!fp)
{
#if NOD_UCS2
LogModule.report(LogVisor::Error, L"Unable to open '%s' for reading\n", filepath.c_str());
LogModule.report(LogVisor::Error, L"Unable to open '%s' for reading", filepath.c_str());
#else
LogModule.report(LogVisor::Error, "Unable to open '%s' for reading\n", filepath.c_str());
LogModule.report(LogVisor::Error, "Unable to open '%s' for reading", filepath.c_str());
#endif
return std::unique_ptr<IReadStream>();
}
@@ -67,9 +67,9 @@ public:
if (!fp)
{
#if NOD_UCS2
LogModule.report(LogVisor::Error, L"Unable to open '%s' for writing\n", filepath.c_str());
LogModule.report(LogVisor::Error, L"Unable to open '%s' for writing", filepath.c_str());
#else
LogModule.report(LogVisor::Error, "Unable to open '%s' for writing\n", filepath.c_str());
LogModule.report(LogVisor::Error, "Unable to open '%s' for writing", filepath.c_str());
#endif
return std::unique_ptr<IWriteStream>();
}