svn commit: r307663 - head/sys/kern

Kevin Lo kevlo at FreeBSD.org
Thu Oct 20 01:21:11 UTC 2016


Author: kevlo
Date: Thu Oct 20 01:21:10 2016
New Revision: 307663
URL: https://svnweb.freebsd.org/changeset/base/307663

Log:
  Remove register keyword.
  
  Reviewed by:	kib

Modified:
  head/sys/kern/init_main.c

Modified: head/sys/kern/init_main.c
==============================================================================
--- head/sys/kern/init_main.c	Thu Oct 20 01:19:37 2016	(r307662)
+++ head/sys/kern/init_main.c	Thu Oct 20 01:21:10 2016	(r307663)
@@ -204,9 +204,9 @@ void
 mi_startup(void)
 {
 
-	register struct sysinit **sipp;		/* system initialization*/
-	register struct sysinit **xipp;		/* interior loop of sort*/
-	register struct sysinit *save;		/* bubble*/
+	struct sysinit **sipp;	/* system initialization*/
+	struct sysinit **xipp;	/* interior loop of sort*/
+	struct sysinit *save;	/* bubble*/
 
 #if defined(VERBOSE_SYSINIT)
 	int last;


More information about the svn-src-all mailing list