Build fix for Windows.

Refs# 6191
This commit is contained in:
Gunnar Beutner 2014-05-17 08:38:28 +02:00
parent 2e2f356459
commit b2246f3af9
1 changed files with 1 additions and 1 deletions

View File

@ -1033,6 +1033,6 @@ bool Utility::PathExists(const String& path)
return (lstat(path.CStr(), &statbuf) >= 0);
#else /* _WIN32 */
struct _stat statbuf;
return (_stat(path.CStr(), &statbuf) >= 0)
return (_stat(path.CStr(), &statbuf) >= 0);
#endif /* _WIN32 */
}