fix indentation

This commit is contained in:
maksqwe 2013-08-23 21:58:04 +03:00
parent af339a7a7a
commit f0cf0dcbec

View File

@ -153,7 +153,7 @@ bool WinIOCallback::open(const wchar_t* Path, const open_mode aMode, DWORD dwFla
mFile = CreateFileW(Path, AccessMode, ShareMode, NULL, Disposition, dwFlags, NULL);
} else {
int errCode;
int pathSize = wcslen(Path);
int pathSize = wcslen(Path);
unsigned int bufferSize = pathSize + sizeof(wchar_t) * 2;
std::string PathA;
PathA.resize(bufferSize);