From ead19306f5d6d5d5ef49165aa518e525de8e84b2 Mon Sep 17 00:00:00 2001 From: Rob Landley Date: Fri, 10 Mar 2006 23:16:25 +0000 Subject: Cleanup patches from tito. --- console-tools/chvt.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'console-tools/chvt.c') diff --git a/console-tools/chvt.c b/console-tools/chvt.c index 252aed740..cba5b4014 100644 --- a/console-tools/chvt.c +++ b/console-tools/chvt.c @@ -44,8 +44,8 @@ int chvt_main(int argc, char **argv) fd = get_console_fd(); num = bb_xgetlarg(argv[1], 10, 0, INT_MAX); - if((-1 == ioctl(fd, VT_ACTIVATE, num)) || - (-1 == ioctl(fd, VT_WAITACTIVE, num))) { + if ((-1 == ioctl(fd, VT_ACTIVATE, num)) + || (-1 == ioctl(fd, VT_WAITACTIVE, num))) { bb_perror_msg_and_die("ioctl"); } return EXIT_SUCCESS; -- cgit v1.2.3