Skip to content
Snippets Groups Projects
Commit 619715af authored by Christophe Geuzaine's avatar Christophe Geuzaine
Browse files

fix compile

parent 2efbc7cf
Branches
Tags
No related merge requests found
...@@ -159,7 +159,7 @@ int StatFile(const std::string &fileName) ...@@ -159,7 +159,7 @@ int StatFile(const std::string &fileName)
// could get file modification time from buf // could get file modification time from buf
#else #else
struct _stat buf; struct _stat buf;
int ret _stat(fileName.c_str(), &buf); int ret = _stat(fileName.c_str(), &buf);
#endif #endif
return ret; return ret;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment