diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2006-09-05 09:36:19 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2006-09-05 09:36:19 +0000 |
commit | d25a2645f5273e70616abe73e6ac1adda5016532 (patch) | |
tree | bf50209ee814a956a4a9e3b85c3642f585978e5b /console-tools | |
parent | 02add9e53a248d6b1b0b62e1fdf126362d67f1bc (diff) | |
download | busybox-w32-d25a2645f5273e70616abe73e6ac1adda5016532.tar.gz busybox-w32-d25a2645f5273e70616abe73e6ac1adda5016532.tar.bz2 busybox-w32-d25a2645f5273e70616abe73e6ac1adda5016532.zip |
xfunc: fix: && -> &. Also nuked two double semicolons...
Diffstat (limited to 'console-tools')
-rw-r--r-- | console-tools/setlogcons.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/console-tools/setlogcons.c b/console-tools/setlogcons.c index 6667eb622..9d1ef5492 100644 --- a/console-tools/setlogcons.c +++ b/console-tools/setlogcons.c | |||
@@ -25,7 +25,7 @@ extern int setlogcons_main(int argc, char **argv) | |||
25 | arg.subarg = atoi(argv[1]); | 25 | arg.subarg = atoi(argv[1]); |
26 | 26 | ||
27 | if (ioctl(xopen(VC_1, O_RDONLY), TIOCLINUX, &arg)) | 27 | if (ioctl(xopen(VC_1, O_RDONLY), TIOCLINUX, &arg)) |
28 | bb_perror_msg_and_die("TIOCLINUX");; | 28 | bb_perror_msg_and_die("TIOCLINUX"); |
29 | 29 | ||
30 | return 0; | 30 | return 0; |
31 | } | 31 | } |