svn commit: r241070 - head/sys/boot/common

Andrey V. Elsukov ae at FreeBSD.org
Sun Sep 30 13:17:34 UTC 2012


Author: ae
Date: Sun Sep 30 13:17:33 2012
New Revision: 241070
URL: http://svn.freebsd.org/changeset/base/241070

Log:
  Fix the style.

Modified:
  head/sys/boot/common/module.c

Modified: head/sys/boot/common/module.c
==============================================================================
--- head/sys/boot/common/module.c	Sun Sep 30 13:14:37 2012	(r241069)
+++ head/sys/boot/common/module.c	Sun Sep 30 13:17:33 2012	(r241070)
@@ -288,10 +288,10 @@ file_load(char *filename, vm_offset_t de
 	    *result = fp;
 	    break;
 	} else if (last_file_format == i && i != 0) {
-		/* Restart from the beginning */
-		last_file_format = i = 0;
-		fp = NULL;
-		continue;
+	    /* Restart from the beginning */
+	    last_file_format = i = 0;
+	    fp = NULL;
+	    continue;
 	}
 	if (error == EFTYPE)
 	    continue;		/* Unknown to this handler? */


More information about the svn-src-all mailing list