From: Mark Whitley Date: Wed, 13 Dec 2000 23:23:30 +0000 (-0000) Subject: Added some necessary brackets, removed debug noise. X-Git-Tag: 0_49~130 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=6f6aa9b428f8d9c1988b837a3e473c5248358384;p=oweals%2Fbusybox.git Added some necessary brackets, removed debug noise. --- diff --git a/console-tools/deallocvt.c b/console-tools/deallocvt.c index ebdce7b24..b128c3fae 100644 --- a/console-tools/deallocvt.c +++ b/console-tools/deallocvt.c @@ -24,14 +24,12 @@ int deallocvt_main(int argc, char *argv[]) fd = get_console_fd("/dev/console"); if (argc == 1) { -printf("erik: A\n"); /* deallocate all unused consoles */ if (ioctl(fd, VT_DISALLOCATE, 0)) { perror("VT_DISALLOCATE"); return EXIT_FAILURE; } - } else -printf("erik: B\n"); + } else { for (i = 1; i < argc; i++) { num = atoi(argv[i]); if (num == 0) @@ -43,6 +41,7 @@ printf("erik: B\n"); error_msg_and_die("could not deallocate console %d\n", num); } } -printf("erik: C\n"); + } + return EXIT_SUCCESS; } diff --git a/deallocvt.c b/deallocvt.c index ebdce7b24..b128c3fae 100644 --- a/deallocvt.c +++ b/deallocvt.c @@ -24,14 +24,12 @@ int deallocvt_main(int argc, char *argv[]) fd = get_console_fd("/dev/console"); if (argc == 1) { -printf("erik: A\n"); /* deallocate all unused consoles */ if (ioctl(fd, VT_DISALLOCATE, 0)) { perror("VT_DISALLOCATE"); return EXIT_FAILURE; } - } else -printf("erik: B\n"); + } else { for (i = 1; i < argc; i++) { num = atoi(argv[i]); if (num == 0) @@ -43,6 +41,7 @@ printf("erik: B\n"); error_msg_and_die("could not deallocate console %d\n", num); } } -printf("erik: C\n"); + } + return EXIT_SUCCESS; }