diff options
Diffstat (limited to 'deallocvt.c')
-rw-r--r-- | deallocvt.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/deallocvt.c b/deallocvt.c index 53d4d9a7c..906f3a9fa 100644 --- a/deallocvt.c +++ b/deallocvt.c @@ -39,14 +39,12 @@ int deallocvt_main(int argc, char *argv[]) for (i = 1; i < argc; i++) { num = atoi(argv[i]); if (num == 0) - fprintf(stderr, "%s: 0: illegal VT number\n", applet_name); + errorMsg("0: illegal VT number\n"); else if (num == 1) - fprintf(stderr, "%s: VT 1 cannot be deallocated\n", - applet_name); + errorMsg("VT 1 cannot be deallocated\n"); else if (ioctl(fd, VT_DISALLOCATE, num)) { perror("VT_DISALLOCATE"); - fprintf(stderr, "%s: could not deallocate console %d\n", - applet_name, num); + errorMsg("could not deallocate console %d\n", num); exit( FALSE); } } |