svn commit: r227444 - head/sys/kern

Konstantin Belousov kib at FreeBSD.org
Fri Nov 11 04:13:47 UTC 2011


Author: kib
Date: Fri Nov 11 04:13:47 2011
New Revision: 227444
URL: http://svn.freebsd.org/changeset/base/227444

Log:
  Style.
  
  MFC after:	1 week

Modified:
  head/sys/kern/kern_conf.c

Modified: head/sys/kern/kern_conf.c
==============================================================================
--- head/sys/kern/kern_conf.c	Fri Nov 11 04:12:58 2011	(r227443)
+++ head/sys/kern/kern_conf.c	Fri Nov 11 04:13:47 2011	(r227444)
@@ -1009,8 +1009,7 @@ make_dev_physpath_alias(int flags, struc
 	}
 
 	sprintf(devfspath, "%s/%s", physpath, pdev->si_name);
-	if (old_alias != NULL
-	 && strcmp(old_alias->si_name, devfspath) == 0) {
+	if (old_alias != NULL && strcmp(old_alias->si_name, devfspath) == 0) {
 		/* Retain the existing alias. */
 		*cdev = old_alias;
 		old_alias = NULL;


More information about the svn-src-head mailing list