diff options
Diffstat (limited to 'console-tools/loadkmap.c')
-rw-r--r-- | console-tools/loadkmap.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/console-tools/loadkmap.c b/console-tools/loadkmap.c index fc2439864..43c1cc795 100644 --- a/console-tools/loadkmap.c +++ b/console-tools/loadkmap.c | |||
@@ -34,11 +34,11 @@ struct kbentry { | |||
34 | unsigned char kb_index; | 34 | unsigned char kb_index; |
35 | unsigned short kb_value; | 35 | unsigned short kb_value; |
36 | }; | 36 | }; |
37 | #define KDSKBENT 0x4B47 /* sets one entry in translation table */ | 37 | static const int KDSKBENT = 0x4B47; /* sets one entry in translation table */ |
38 | 38 | ||
39 | /* From <linux/keyboard.h> */ | 39 | /* From <linux/keyboard.h> */ |
40 | #define NR_KEYS 128 | 40 | static const int NR_KEYS = 128; |
41 | #define MAX_NR_KEYMAPS 256 | 41 | static const int MAX_NR_KEYMAPS = 256; |
42 | 42 | ||
43 | int loadkmap_main(int argc, char **argv) | 43 | int loadkmap_main(int argc, char **argv) |
44 | { | 44 | { |