diff options
Diffstat (limited to 'src/locale/wcscoll.c')
-rw-r--r-- | src/locale/wcscoll.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/locale/wcscoll.c b/src/locale/wcscoll.c index 95a4ca74..20a60900 100644 --- a/src/locale/wcscoll.c +++ b/src/locale/wcscoll.c @@ -10,7 +10,7 @@ int __wcscoll_l(const wchar_t *l, const wchar_t *r, locale_t locale) int wcscoll(const wchar_t *l, const wchar_t *r) { - return __wcscoll_l(l, r, LC_GLOBAL_LOCALE); + return __wcscoll_l(l, r, 0); } weak_alias(__wcscoll_l, wcscoll_l); |