xfunc: fix: && -> &. Also nuked two double semicolons...

This commit is contained in:
Denis Vlasenko
2006-09-05 09:36:19 +00:00
parent 02add9e53a
commit d25a2645f5
2 changed files with 3 additions and 3 deletions

View File

@ -25,7 +25,7 @@ extern int setlogcons_main(int argc, char **argv)
arg.subarg = atoi(argv[1]);
if (ioctl(xopen(VC_1, O_RDONLY), TIOCLINUX, &arg))
bb_perror_msg_and_die("TIOCLINUX");;
bb_perror_msg_and_die("TIOCLINUX");
return 0;
}