diff options
author | Mark Whitley | 2000-12-07 19:56:48 +0000 |
---|---|---|
committer | Mark Whitley | 2000-12-07 19:56:48 +0000 |
commit | f57c944e09417edcbcd69f2b01b937cadef39db2 (patch) | |
tree | a55822621d54bd82c54e272fa986e45698fea0f1 /console-tools/deallocvt.c | |
parent | 7b5c16ebe5f1b057603cf1c0b0187be418725c42 (diff) | |
download | busybox-f57c944e09417edcbcd69f2b01b937cadef39db2.zip busybox-f57c944e09417edcbcd69f2b01b937cadef39db2.tar.gz |
Changed names of functions in utility.c and all affected files, to make
compliant with the style guide. Everybody rebuild your tags file!
Diffstat (limited to 'console-tools/deallocvt.c')
-rw-r--r-- | console-tools/deallocvt.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/console-tools/deallocvt.c b/console-tools/deallocvt.c index 4600c0d..ebdce7b 100644 --- a/console-tools/deallocvt.c +++ b/console-tools/deallocvt.c @@ -35,12 +35,12 @@ printf("erik: B\n"); for (i = 1; i < argc; i++) { num = atoi(argv[i]); if (num == 0) - errorMsg("0: illegal VT number\n"); + error_msg("0: illegal VT number\n"); else if (num == 1) - errorMsg("VT 1 cannot be deallocated\n"); + error_msg("VT 1 cannot be deallocated\n"); else if (ioctl(fd, VT_DISALLOCATE, num)) { perror("VT_DISALLOCATE"); - fatalError("could not deallocate console %d\n", num); + error_msg_and_die("could not deallocate console %d\n", num); } } printf("erik: C\n"); |