svn commit: r300055 - head/sys/boot/ficl

Warner Losh imp at FreeBSD.org
Tue May 17 14:10:46 UTC 2016


Author: imp
Date: Tue May 17 14:10:44 2016
New Revision: 300055
URL: https://svnweb.freebsd.org/changeset/base/300055

Log:
  Minor space tweak to make things consistent.
  
  MFC After: 3 days

Modified:
  head/sys/boot/ficl/words.c

Modified: head/sys/boot/ficl/words.c
==============================================================================
--- head/sys/boot/ficl/words.c	Tue May 17 14:06:55 2016	(r300054)
+++ head/sys/boot/ficl/words.c	Tue May 17 14:10:44 2016	(r300055)
@@ -5198,12 +5198,11 @@ void ficlCompileCore(FICL_SYSTEM *pSys)
     /*
     ** Set up system's outer interpreter loop - maybe this should be in initSystem?
     */
-	pSys->pInterp[0] = pSys->pInterpret;
-	pSys->pInterp[1] = pSys->pBranchParen;
-	pSys->pInterp[2] = (FICL_WORD *)(void *)(-2);
+    pSys->pInterp[0] = pSys->pInterpret;
+    pSys->pInterp[1] = pSys->pBranchParen;
+    pSys->pInterp[2] = (FICL_WORD *)(void *)(-2);
 
     assert(dictCellsAvail(dp) > 0);
 
     return;
 }
-


More information about the svn-src-head mailing list