aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/lib/icu/Collate.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/icu/Collate.cxx b/src/lib/icu/Collate.cxx
index 7bc631754..455f346b7 100644
--- a/src/lib/icu/Collate.cxx
+++ b/src/lib/icu/Collate.cxx
@@ -159,9 +159,9 @@ IcuCaseFold(const char *src)
UErrorCode error_code = U_ZERO_ERROR;
size_t folded_length = u_strFoldCase(folded, folded_capacity,
- u.data, u.size,
- U_FOLD_CASE_DEFAULT,
- &error_code);
+ u.data, u.size,
+ U_FOLD_CASE_DEFAULT,
+ &error_code);
delete[] u.data;
if (folded_length == 0 || error_code != U_ZERO_ERROR) {
delete[] folded;