Cosmetics

This commit is contained in:
Birunthan Mohanathas
2013-06-12 23:08:45 +03:00
parent cd4bf6d17a
commit fed4b080b0
2 changed files with 3 additions and 4 deletions

View File

@ -102,7 +102,7 @@ void ExpandEnvironmentVariables(std::wstring& path)
DWORD bufSize = 4096;
WCHAR* buffer = new WCHAR[bufSize];
// %APPDATA% is a special casem
// %APPDATA% is a special case.
pos = path.find(L"%APPDATA%", pos);
if (pos != std::wstring::npos)
{
@ -146,5 +146,4 @@ void ExpandEnvironmentVariables(std::wstring& path)
}
}
} // namespace PathUtil