svn commit: r238531 - user/ae/bootcode/sys/boot/i386/loader

Andrey V. Elsukov ae at FreeBSD.org
Mon Jul 16 11:22:34 UTC 2012


Author: ae
Date: Mon Jul 16 11:22:33 2012
New Revision: 238531
URL: http://svn.freebsd.org/changeset/base/238531

Log:
  Preserve indents in the style of entire file.
  
  Requested by:	avg

Modified:
  user/ae/bootcode/sys/boot/i386/loader/main.c

Modified: user/ae/bootcode/sys/boot/i386/loader/main.c
==============================================================================
--- user/ae/bootcode/sys/boot/i386/loader/main.c	Mon Jul 16 10:53:49 2012	(r238530)
+++ user/ae/bootcode/sys/boot/i386/loader/main.c	Mon Jul 16 11:22:33 2012	(r238531)
@@ -355,18 +355,18 @@ isa_outb(int port, int value)
 static void
 i386_zfs_probe(void)
 {
-	char devname[32];
-	int unit;
+    char devname[32];
+    int unit;
 
-	/*
-	 * Open all the disks we can find and see if we can reconstruct
-	 * ZFS pools from them.
-	 */
-	for (unit = 0; unit < MAXBDDEV; unit++) {
-		if (bd_unit2bios(unit) == -1)
-			break;
-		sprintf(devname, "disk%d:", unit);
-		zfs_probe_dev(devname, NULL);
-	}
+    /*
+     * Open all the disks we can find and see if we can reconstruct
+     * ZFS pools from them.
+     */
+    for (unit = 0; unit < MAXBDDEV; unit++) {
+	if (bd_unit2bios(unit) == -1)
+	    break;
+	sprintf(devname, "disk%d:", unit);
+	zfs_probe_dev(devname, NULL);
+    }
 }
 #endif


More information about the svn-src-user mailing list