diff options
author | Denis Vlasenko | 2008-09-28 16:40:02 +0000 |
---|---|---|
committer | Denis Vlasenko | 2008-09-28 16:40:02 +0000 |
commit | 4a81fe4173bf5029058253cf0be194c23a5ad369 (patch) | |
tree | 0806d2c3d6df92784c407221d862b9956c9ea115 /console-tools | |
parent | 3e7eca97b987b351c6f68308c6e0c421541f10c8 (diff) | |
download | busybox-4a81fe4173bf5029058253cf0be194c23a5ad369.zip busybox-4a81fe4173bf5029058253cf0be194c23a5ad369.tar.gz |
apply post-1.11.2 fixes, bump version to 1.11.31_11_3
Diffstat (limited to 'console-tools')
-rw-r--r-- | console-tools/kbd_mode.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/console-tools/kbd_mode.c b/console-tools/kbd_mode.c index f40ee64..2137d9f 100644 --- a/console-tools/kbd_mode.c +++ b/console-tools/kbd_mode.c @@ -2,7 +2,7 @@ /* * Mini kbd_mode implementation for busybox * - * Copyright (C) 2007 Loïc Grenié <loic.grenie@gmail.com> + * Copyright (C) 2007 Loic Grenie <loic.grenie@gmail.com> * written using Andries Brouwer <aeb@cwi.nl>'s kbd_mode from * console-utils v0.2.3, licensed under GNU GPLv2 * @@ -46,6 +46,7 @@ int kbd_mode_main(int ATTRIBUTE_UNUSED argc, char **argv) printf("The keyboard is in %s mode\n", mode); } else { opt = opt & UNICODE ? 3 : opt >> 1; + /* double cast prevents warnings about widening conversion */ xioctl(fd, KDSKBMODE, (void*)(ptrdiff_t)opt); } |