From c6df9c945232b76340e298946b51684441f549fc Mon Sep 17 00:00:00 2001
From: Denis Vlasenko <vda.linux@googlemail.com>
Date: Sun, 21 Dec 2008 14:50:55 +0000
Subject: more of warning fixes, mostly pointer signedness mismatches

---
 libc/misc/locale/locale.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

(limited to 'libc/misc')

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);
-- 
cgit v1.2.3