Added some necessary brackets, removed debug noise.
This commit is contained in:
parent
e3a94f7d08
commit
6f6aa9b428
@ -24,14 +24,12 @@ int deallocvt_main(int argc, char *argv[])
|
|||||||
fd = get_console_fd("/dev/console");
|
fd = get_console_fd("/dev/console");
|
||||||
|
|
||||||
if (argc == 1) {
|
if (argc == 1) {
|
||||||
printf("erik: A\n");
|
|
||||||
/* deallocate all unused consoles */
|
/* deallocate all unused consoles */
|
||||||
if (ioctl(fd, VT_DISALLOCATE, 0)) {
|
if (ioctl(fd, VT_DISALLOCATE, 0)) {
|
||||||
perror("VT_DISALLOCATE");
|
perror("VT_DISALLOCATE");
|
||||||
return EXIT_FAILURE;
|
return EXIT_FAILURE;
|
||||||
}
|
}
|
||||||
} else
|
} else {
|
||||||
printf("erik: B\n");
|
|
||||||
for (i = 1; i < argc; i++) {
|
for (i = 1; i < argc; i++) {
|
||||||
num = atoi(argv[i]);
|
num = atoi(argv[i]);
|
||||||
if (num == 0)
|
if (num == 0)
|
||||||
@ -43,6 +41,7 @@ printf("erik: B\n");
|
|||||||
error_msg_and_die("could not deallocate console %d\n", num);
|
error_msg_and_die("could not deallocate console %d\n", num);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
printf("erik: C\n");
|
}
|
||||||
|
|
||||||
return EXIT_SUCCESS;
|
return EXIT_SUCCESS;
|
||||||
}
|
}
|
||||||
|
@ -24,14 +24,12 @@ int deallocvt_main(int argc, char *argv[])
|
|||||||
fd = get_console_fd("/dev/console");
|
fd = get_console_fd("/dev/console");
|
||||||
|
|
||||||
if (argc == 1) {
|
if (argc == 1) {
|
||||||
printf("erik: A\n");
|
|
||||||
/* deallocate all unused consoles */
|
/* deallocate all unused consoles */
|
||||||
if (ioctl(fd, VT_DISALLOCATE, 0)) {
|
if (ioctl(fd, VT_DISALLOCATE, 0)) {
|
||||||
perror("VT_DISALLOCATE");
|
perror("VT_DISALLOCATE");
|
||||||
return EXIT_FAILURE;
|
return EXIT_FAILURE;
|
||||||
}
|
}
|
||||||
} else
|
} else {
|
||||||
printf("erik: B\n");
|
|
||||||
for (i = 1; i < argc; i++) {
|
for (i = 1; i < argc; i++) {
|
||||||
num = atoi(argv[i]);
|
num = atoi(argv[i]);
|
||||||
if (num == 0)
|
if (num == 0)
|
||||||
@ -43,6 +41,7 @@ printf("erik: B\n");
|
|||||||
error_msg_and_die("could not deallocate console %d\n", num);
|
error_msg_and_die("could not deallocate console %d\n", num);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
printf("erik: C\n");
|
}
|
||||||
|
|
||||||
return EXIT_SUCCESS;
|
return EXIT_SUCCESS;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user