mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-08 02:03:56 -06:00
Add some missing static qualifiers
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5363 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
98448f58c1
commit
674bb26172
4 changed files with 8 additions and 8 deletions
|
@ -37,7 +37,7 @@
|
|||
|
||||
#define CURSES_KEYS KEY_MAX /* KEY_MAX defined in <curses.h> */
|
||||
|
||||
int curses2keycode[CURSES_KEYS] = {
|
||||
static int curses2keycode[CURSES_KEYS] = {
|
||||
[0 ... (CURSES_KEYS - 1)] = -1,
|
||||
|
||||
[0x01b] = 1, /* Escape */
|
||||
|
@ -216,7 +216,7 @@ int curses2keycode[CURSES_KEYS] = {
|
|||
|
||||
};
|
||||
|
||||
int curses2keysym[CURSES_KEYS] = {
|
||||
static int curses2keysym[CURSES_KEYS] = {
|
||||
[0 ... (CURSES_KEYS - 1)] = -1,
|
||||
|
||||
['\n'] = '\n',
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue