Windows string fixes

This commit is contained in:
Jack Andersen 2016-02-16 17:36:06 -10:00
parent 474224a1d2
commit 52d840a49b
2 changed files with 3 additions and 3 deletions

2
hecl/extern/libBoo vendored

@ -1 +1 @@
Subproject commit 77e9492b43eb73528a842b6e53d125b05afdf5bc
Subproject commit d75a727a5d3881b77aa519a0fba333a8a1d09d60

View File

@ -241,8 +241,8 @@ static void _recursiveGlob(Database::Project& proj,
nextItStr += '/';
nextItStr += ent.m_name;
struct stat theStat;
if (stat(nextItStr.c_str(), &theStat))
HECL::Sstat theStat;
if (Stat(nextItStr.c_str(), &theStat))
continue;
if (ent.m_isDir)