Fix file_system.cpp for Win32 version without PIDLs

This commit is contained in:
David Capello 2014-09-09 08:50:48 -03:00
parent 6f6e101ab3
commit 10722f1bec

View File

@ -1102,7 +1102,7 @@ static std::string get_key_for_filename(const std::string& filename)
std::string buf(filename);
#if !defined CASE_SENSITIVE
buf.tolower();
buf = base::string_to_lower(buf);
#endif
buf = base::fix_path_separators(buf);