From: Luigi Rizzo Date: Wed, 9 Jan 2008 18:12:44 +0000 (+0000) Subject: remove a wrong 'const' X-Git-Tag: 1.6.0-beta1~3^2~129 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=84d4c3d801dda80537698eca2c1395468657c6ee;p=thirdparty%2Fasterisk.git remove a wrong 'const' git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@97533 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/channels/console_gui.c b/channels/console_gui.c index 45e435f27d..aa2f2cf953 100644 --- a/channels/console_gui.c +++ b/channels/console_gui.c @@ -462,7 +462,7 @@ static const char *us_kbd_map[] = { NULL }; -static const char map_key(SDL_keysym *ks) +static char map_key(SDL_keysym *ks) { const char *s, **p = us_kbd_map; int c = ks->sym;