svn commit: r320307 - head/sys/i386/isa

Konstantin Belousov kib at FreeBSD.org
Sat Jun 24 10:19:07 UTC 2017


Author: kib
Date: Sat Jun 24 10:19:06 2017
New Revision: 320307
URL: https://svnweb.freebsd.org/changeset/base/320307

Log:
  Fix indent.
  
  Sponsored by:	The FreeBSD Foundation
  MFC after:	3 days

Modified:
  head/sys/i386/isa/npx.c

Modified: head/sys/i386/isa/npx.c
==============================================================================
--- head/sys/i386/isa/npx.c	Sat Jun 24 09:47:57 2017	(r320306)
+++ head/sys/i386/isa/npx.c	Sat Jun 24 10:19:06 2017	(r320307)
@@ -1149,7 +1149,7 @@ npx_set_fpregs_xmm(struct save87 *sv_87, struct savexm
 	for (i = 0; i < 8; ++i) {
 		sv_xmm->sv_fp[i].fp_acc = sv_87->sv_ac[i];
 		if ((penv_87->en_tw & (3 << i * 2)) != (3 << i * 2))
-		    penv_xmm->en_tw |= 1 << i;
+			penv_xmm->en_tw |= 1 << i;
 	}
 }
 


More information about the svn-src-all mailing list