diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-12-21 14:50:55 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-12-21 14:50:55 +0000 |
commit | c6df9c945232b76340e298946b51684441f549fc (patch) | |
tree | 488259fdb9d5be8d536218301104b036541a97df /libc/misc/locale | |
parent | eebbc87bcc8d5bc6916870b7dd6cc4603f728a94 (diff) |
more of warning fixes, mostly pointer signedness mismatches
Diffstat (limited to 'libc/misc/locale')
-rw-r--r-- | libc/misc/locale/locale.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/misc/locale/locale.c b/libc/misc/locale/locale.c index bd448ba07..a2a898fdd 100644 --- a/libc/misc/locale/locale.c +++ b/libc/misc/locale/locale.c @@ -254,7 +254,7 @@ static void update_hr_locale(const unsigned char *spec) if (at) { const char *q; *n++ = '@'; - q = LOCALE_AT_MODIFIERS; + q = (char*) LOCALE_AT_MODIFIERS; do { if (q[1] == at) { n = stpcpy(n, q+2); |