svn commit: trunk/busybox/util-linux

vapier at busybox.net vapier at busybox.net
Thu Jul 27 03:00:50 UTC 2006


Author: vapier
Date: 2006-07-26 20:00:49 -0700 (Wed, 26 Jul 2006)
New Revision: 15748

Log:
de-cuddle if( to if (

Modified:
   trunk/busybox/util-linux/dmesg.c


Changeset:
Modified: trunk/busybox/util-linux/dmesg.c
===================================================================
--- trunk/busybox/util-linux/dmesg.c	2006-07-26 19:11:36 UTC (rev 15747)
+++ trunk/busybox/util-linux/dmesg.c	2006-07-27 03:00:49 UTC (rev 15748)
@@ -18,7 +18,7 @@
 	int flags = bb_getopt_ulflags(argc, argv, "cs:n:", &size, &level);
 
 	if (flags & 4) {
-		if(klogctl(8, NULL, bb_xgetlarg(level, 10, 0, 10)))
+		if (klogctl(8, NULL, bb_xgetlarg(level, 10, 0, 10)))
 			bb_perror_msg_and_die("klogctl");
 	} else {
 		int len;




More information about the busybox-cvs mailing list