diff options
author | Max Kellermann <max@duempel.org> | 2015-06-25 22:55:54 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2015-06-25 22:55:57 +0200 |
commit | 61fa770644ff980b521e5cf016c969bfa04c9f63 (patch) | |
tree | 4c0e2932fab7fcc81546aaccb8e29f5d7590f9cc /src/lib/icu/Collate.cxx | |
parent | 334bd73792f22a5858bf7afd6df2400f5ac36b26 (diff) | |
download | mpd-61fa770644ff980b521e5cf016c969bfa04c9f63.tar.gz mpd-61fa770644ff980b521e5cf016c969bfa04c9f63.tar.xz mpd-61fa770644ff980b521e5cf016c969bfa04c9f63.zip |
lib/icu/Collate: fix indent
Diffstat (limited to '')
-rw-r--r-- | src/lib/icu/Collate.cxx | 6 |
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; |