summaryrefslogtreecommitdiff
path: root/zen/zstring.cpp
diff options
context:
space:
mode:
authorDaniel Wilhelm <daniel@wili.li>2014-04-18 17:32:48 +0200
committerDaniel Wilhelm <daniel@wili.li>2014-04-18 17:32:48 +0200
commit1249b507dd7b3ada7066b129d1a6552a90836084 (patch)
treedbe7be194c5b4ee57bd14198821ac1959b577262 /zen/zstring.cpp
parent6.3 (diff)
downloadFreeFileSync-1249b507dd7b3ada7066b129d1a6552a90836084.tar.gz
FreeFileSync-1249b507dd7b3ada7066b129d1a6552a90836084.tar.bz2
FreeFileSync-1249b507dd7b3ada7066b129d1a6552a90836084.zip
6.4
Diffstat (limited to 'zen/zstring.cpp')
-rw-r--r--zen/zstring.cpp4
1 files changed, 2 insertions, 2 deletions
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<int>(len), //__in int cchSrc,
+ static_cast<int>(len), //__in int cchSrc,
strOut, //__out LPTSTR lpDestStr,
- static_cast<int>(len)) == 0) //__in int cchDest
+ static_cast<int>(len)) == 0) //__in int cchDest
throw std::runtime_error("Error comparing strings (LCMapString).");
};
bgstack15