From 1249b507dd7b3ada7066b129d1a6552a90836084 Mon Sep 17 00:00:00 2001 From: Daniel Wilhelm Date: Fri, 18 Apr 2014 17:32:48 +0200 Subject: 6.4 --- zen/zstring.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'zen/zstring.cpp') diff --git a/zen/zstring.cpp b/zen/zstring.cpp index 8803d83e..3e579b1e 100644 --- a/zen/zstring.cpp +++ b/zen/zstring.cpp @@ -173,9 +173,9 @@ int z_impl::compareFilenamesNoCase(const wchar_t* lhs, const wchar_t* rhs, size_ if (::LCMapString(ZSTRING_INVARIANT_LOCALE, //__in LCID Locale, LCMAP_UPPERCASE, //__in DWORD dwMapFlags, strIn, //__in LPCTSTR lpSrcStr, - static_cast(len), //__in int cchSrc, + static_cast(len), //__in int cchSrc, strOut, //__out LPTSTR lpDestStr, - static_cast(len)) == 0) //__in int cchDest + static_cast(len)) == 0) //__in int cchDest throw std::runtime_error("Error comparing strings (LCMapString)."); }; -- cgit