fix build inder mac

This commit is contained in:
marina.kolpakova
2013-01-09 21:07:53 +04:00
parent dc12b4476a
commit e2de3b0b81
2 changed files with 3 additions and 3 deletions

View File

@@ -150,7 +150,7 @@ void glob(const string& path, svector& ret)
ret.clear();
ret.reserve(glob_result.gl_pathc);
for(uint i = 0; i < glob_result.gl_pathc; ++i)
for(unsigned int i = 0; i < glob_result.gl_pathc; ++i)
{
ret.push_back(std::string(glob_result.gl_pathv[i]));
dprintf("%s\n", ret[i].c_str());