libpayload: Fix const warnings in keyname() and termname()

The keyname() and termname() functions were creating a whole lot of warnings of
the style

curses/PDCurses-3.4/pdcurses/keyname.c:41:9: warning: initialization discards 'const' qualifier from pointer target type [enabled by default]

This patch fixes them.

Change-Id: Iae3c4e5201b48c2d2033cac48577e0462a34f309
Signed-off-by: Stefan Reinauer <reinauer@google.com>
Reviewed-on: http://review.coreboot.org/2905
Tested-by: build bot (Jenkins)
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
This commit is contained in:
Stefan Reinauer 2013-03-25 15:15:16 -07:00 committed by Stefan Reinauer
parent 8d225f141d
commit a6c495edca
3 changed files with 5 additions and 5 deletions

View File

@ -945,7 +945,7 @@ int intrflush(WINDOW *, bool);
bool isendwin(void);
bool is_linetouched(WINDOW *, int);
bool is_wintouched(WINDOW *);
char *keyname(int);
const char *keyname(int);
int keypad(WINDOW *, bool);
char killchar(void);
int leaveok(WINDOW *, bool);
@ -1061,7 +1061,7 @@ WINDOW *subwin(WINDOW *, int, int, int, int);
int syncok(WINDOW *, bool);
chtype termattrs(void);
attr_t term_attrs(void);
char *termname(void);
const char *termname(void);
void timeout(int);
int touchline(WINDOW *, int, int);
int touchwin(WINDOW *);

View File

@ -32,11 +32,11 @@ RCSID("$Id: keyname.c,v 1.8 2008/07/13 16:08:18 wmcbrine Exp $")
**man-end****************************************************************/
char *keyname(int key)
const char *keyname(int key)
{
/* Key names must be in exactly the same order as in curses.h */
static char *key_name[] =
static const char *key_name[] =
{
"KEY_BREAK", "KEY_DOWN", "KEY_UP", "KEY_LEFT", "KEY_RIGHT",
"KEY_HOME", "KEY_BACKSPACE", "KEY_F0", "KEY_F(1)", "KEY_F(2)",

View File

@ -135,7 +135,7 @@ attr_t term_attrs(void)
WA_RIGHT | WA_UNDERLINE;
}
char *termname(void)
const char *termname(void)
{
PDC_LOG(("termname() - called\n"));