svn commit: trunk/busybox/console-tools

vda at busybox.net vda at busybox.net
Sat Sep 9 13:23:04 UTC 2006


Author: vda
Date: 2006-09-09 06:23:04 -0700 (Sat, 09 Sep 2006)
New Revision: 16085

Log:
setkeycodes: something horrible happened here
to indentation... fixed now



Modified:
   trunk/busybox/console-tools/setkeycodes.c


Changeset:
Modified: trunk/busybox/console-tools/setkeycodes.c
===================================================================
--- trunk/busybox/console-tools/setkeycodes.c	2006-09-09 12:55:02 UTC (rev 16084)
+++ trunk/busybox/console-tools/setkeycodes.c	2006-09-09 13:23:04 UTC (rev 16085)
@@ -27,35 +27,34 @@
 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;
 }




More information about the busybox-cvs mailing list