From b2246f3af906bb836fcf0e9913254e0d63cc3413 Mon Sep 17 00:00:00 2001 From: Gunnar Beutner Date: Sat, 17 May 2014 08:38:28 +0200 Subject: [PATCH] Build fix for Windows. Refs# 6191 --- lib/base/utility.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/base/utility.cpp b/lib/base/utility.cpp index 45c1bc577..98b79dcfb 100644 --- a/lib/base/utility.cpp +++ b/lib/base/utility.cpp @@ -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 */ }