Fixes formatting in error.cpp (#102)

This commit is contained in:
Thad House
2016-06-17 21:35:00 -07:00
committed by Peter Johnson
parent c3908660b1
commit 039515082a

View File

@@ -68,8 +68,8 @@ void Error::Report() {
#if defined(_WIN32)
const int MAX_DIR = 100;
char basename[MAX_DIR];
_splitpath_s(m_filename.c_str(), nullptr, 0, basename, MAX_DIR, nullptr, 0, nullptr,
0);
_splitpath_s(m_filename.c_str(), nullptr, 0, basename, MAX_DIR, nullptr, 0,
nullptr, 0);
locStream << basename;
#else
locStream << basename(m_filename.c_str());