diff options
author | Rich Felker <dalias@aerifal.cx> | 2014-07-02 21:46:41 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2014-07-02 21:46:41 -0400 |
commit | 4c48501ee2a022a0dd207a2db4d346a00f9927a1 (patch) | |
tree | 59167ab2975dfdf087be1033c72cd591f4c6e1f0 /src/locale/wcscoll.c | |
parent | 7424ac58b1f47adb03de55de5998c530aee91551 (diff) | |
download | musl-4c48501ee2a022a0dd207a2db4d346a00f9927a1.tar.gz musl-4c48501ee2a022a0dd207a2db4d346a00f9927a1.tar.bz2 musl-4c48501ee2a022a0dd207a2db4d346a00f9927a1.tar.xz musl-4c48501ee2a022a0dd207a2db4d346a00f9927a1.zip |
properly pass current locale to *_l functions when used internally
this change is presently non-functional since the callees do not yet
use their locale argument for anything.
Diffstat (limited to 'src/locale/wcscoll.c')
-rw-r--r-- | src/locale/wcscoll.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/locale/wcscoll.c b/src/locale/wcscoll.c index 20a60900..14bb8b9f 100644 --- a/src/locale/wcscoll.c +++ b/src/locale/wcscoll.c @@ -1,5 +1,6 @@ #include <wchar.h> #include <locale.h> +#include "locale_impl.h" #include "libc.h" /* FIXME: stub */ @@ -10,7 +11,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, 0); + return __wcscoll_l(l, r, CURRENT_LOCALE); } weak_alias(__wcscoll_l, wcscoll_l); |