diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2006-12-19 20:32:02 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2006-12-19 20:32:02 +0000 |
commit | 28703015ab71784f40bc97f720ed900e26bd03ca (patch) | |
tree | ff0f9a21d1822c9a2f35819db4156d9555f56116 /console-tools/loadkmap.c | |
parent | f58906b6463436f6a19f72d43c3ab4ba69d79104 (diff) | |
download | busybox-w32-28703015ab71784f40bc97f720ed900e26bd03ca.tar.gz busybox-w32-28703015ab71784f40bc97f720ed900e26bd03ca.tar.bz2 busybox-w32-28703015ab71784f40bc97f720ed900e26bd03ca.zip |
u_short, ulong exterminated
fdiskXXX: add a bit of sanity (not enough by far)
Diffstat (limited to 'console-tools/loadkmap.c')
-rw-r--r-- | console-tools/loadkmap.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/console-tools/loadkmap.c b/console-tools/loadkmap.c index ce9b6817c..74a2378b4 100644 --- a/console-tools/loadkmap.c +++ b/console-tools/loadkmap.c | |||
@@ -29,7 +29,7 @@ int loadkmap_main(int argc, char **argv) | |||
29 | { | 29 | { |
30 | struct kbentry ke; | 30 | struct kbentry ke; |
31 | int i, j, fd; | 31 | int i, j, fd; |
32 | u_short ibuff[NR_KEYS]; | 32 | uint16_t ibuff[NR_KEYS]; |
33 | char flags[MAX_NR_KEYMAPS]; | 33 | char flags[MAX_NR_KEYMAPS]; |
34 | char buff[7]; | 34 | char buff[7]; |
35 | 35 | ||
@@ -46,7 +46,7 @@ int loadkmap_main(int argc, char **argv) | |||
46 | 46 | ||
47 | for (i = 0; i < MAX_NR_KEYMAPS; i++) { | 47 | for (i = 0; i < MAX_NR_KEYMAPS; i++) { |
48 | if (flags[i] == 1) { | 48 | if (flags[i] == 1) { |
49 | xread(0, ibuff, NR_KEYS * sizeof(u_short)); | 49 | xread(0, ibuff, NR_KEYS * sizeof(uint16_t)); |
50 | for (j = 0; j < NR_KEYS; j++) { | 50 | for (j = 0; j < NR_KEYS; j++) { |
51 | ke.kb_index = j; | 51 | ke.kb_index = j; |
52 | ke.kb_table = i; | 52 | ke.kb_table = i; |