diff options
author | Matt Kraai | 2000-07-14 01:51:25 +0000 |
---|---|---|
committer | Matt Kraai | 2000-07-14 01:51:25 +0000 |
commit | d537a95fdbc0b4a5f38edea8593b4c085fdd7fcb (patch) | |
tree | 62127f20fc07758e445d8c4e186306cbe83d77b1 /console-tools/deallocvt.c | |
parent | 4ac6cb534d78d63d7b0a206118c56bad7024b9f8 (diff) | |
download | busybox-d537a95fdbc0b4a5f38edea8593b4c085fdd7fcb.zip busybox-d537a95fdbc0b4a5f38edea8593b4c085fdd7fcb.tar.gz |
Use errorMsg rather than fprintf.
Diffstat (limited to 'console-tools/deallocvt.c')
-rw-r--r-- | console-tools/deallocvt.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/console-tools/deallocvt.c b/console-tools/deallocvt.c index 53d4d9a..906f3a9 100644 --- a/console-tools/deallocvt.c +++ b/console-tools/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); } } |