aboutsummaryrefslogtreecommitdiff
path: root/console-tools/setkeycodes.c
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2006-09-09 13:23:04 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2006-09-09 13:23:04 +0000
commit8fafacd7ec2ea70cb46b28e59c4c9b7473c44ca9 (patch)
tree1bb0a04a59daf72f3b8c616c7d376330ba13bd4f /console-tools/setkeycodes.c
parent42dfcd261204e8a055a41437679858e9fc9226e0 (diff)
downloadbusybox-8fafacd7ec2ea70cb46b28e59c4c9b7473c44ca9.tar.gz
setkeycodes: something horrible happened here
to indentation... fixed now
Diffstat (limited to 'console-tools/setkeycodes.c')
-rw-r--r--console-tools/setkeycodes.c47
1 files changed, 23 insertions, 24 deletions
diff --git a/console-tools/setkeycodes.c b/console-tools/setkeycodes.c
index 1428bf3f2..607b8c785 100644
--- a/console-tools/setkeycodes.c
+++ b/console-tools/setkeycodes.c
@@ -27,35 +27,34 @@ enum {
extern int
setkeycodes_main(int argc, char** argv)
{
- char *ep;
- int fd, sc;
- struct kbkeycode a;
+ char *ep;
+ int fd, sc;
+ struct kbkeycode a;
- if (argc % 2 != 1 || argc < 2) {
- bb_show_usage();
+ if (argc % 2 != 1 || argc < 2) {
+ bb_show_usage();
}
fd = get_console_fd();
- while (argc > 2) {
- a.keycode = atoi(argv[2]);
- a.scancode = sc = strtol(argv[1], &ep, 16);
- if (*ep) {
- bb_error_msg_and_die("error reading SCANCODE: '%s'", argv[1]);
+ while (argc > 2) {
+ a.keycode = atoi(argv[2]);
+ a.scancode = sc = strtol(argv[1], &ep, 16);
+ if (*ep) {
+ bb_error_msg_and_die("error reading SCANCODE: '%s'", argv[1]);
+ }
+ if (a.scancode > 127) {
+ a.scancode -= 0xe000;
+ a.scancode += 128;
+ }
+ if (a.scancode > 255 || a.keycode > 127) {
+ bb_error_msg_and_die("SCANCODE or KEYCODE outside bounds");
+ }
+ if (ioctl(fd,KDSETKEYCODE,&a)) {
+ bb_perror_msg_and_die("failed to set SCANCODE %x to KEYCODE %d", sc, a.keycode);
+ }
+ argc -= 2;
+ argv += 2;
}
- if (a.scancode > 127) {
- a.scancode -= 0xe000;
- a.scancode += 128;
- }
- if (a.scancode > 255 || a.keycode > 127) {
- bb_error_msg_and_die("SCANCODE or KEYCODE outside bounds");
- }
- if (ioctl(fd,KDSETKEYCODE,&a)) {
- perror("KDSETKEYCODE");
- bb_error_msg_and_die("failed to set SCANCODE %x to KEYCODE %d", sc, a.keycode);
- }
- argc -= 2;
- argv += 2;
- }
return EXIT_SUCCESS;
}