diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-02-17 15:52:02 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-02-17 15:52:02 +0000 |
commit | ec27feb04589d46233802f686559fb5f532fb2df (patch) | |
tree | 3c6f8dd683c840fd4855f86e6956db38ad9320bb /console-tools | |
parent | c84520d73dbe100449d84241ec0df9d02ee0fc4d (diff) | |
download | busybox-w32-ec27feb04589d46233802f686559fb5f532fb2df.tar.gz busybox-w32-ec27feb04589d46233802f686559fb5f532fb2df.tar.bz2 busybox-w32-ec27feb04589d46233802f686559fb5f532fb2df.zip |
init: code readability enhancements; very small code changes
Diffstat (limited to 'console-tools')
-rw-r--r-- | console-tools/setconsole.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/console-tools/setconsole.c b/console-tools/setconsole.c index 6621d25f8..7ddef697c 100644 --- a/console-tools/setconsole.c +++ b/console-tools/setconsole.c | |||
@@ -38,7 +38,7 @@ int setconsole_main(int argc, char **argv) | |||
38 | device = argv[optind]; | 38 | device = argv[optind]; |
39 | } else { | 39 | } else { |
40 | if (flags & OPT_SETCONS_RESET) | 40 | if (flags & OPT_SETCONS_RESET) |
41 | device = CONSOLE_DEV; | 41 | device = DEV_CONSOLE; |
42 | } | 42 | } |
43 | 43 | ||
44 | if (-1 == ioctl(xopen(device, O_RDONLY), TIOCCONS)) { | 44 | if (-1 == ioctl(xopen(device, O_RDONLY), TIOCCONS)) { |