svn commit: r347904 - stable/12/sys/amd64/amd64

Mark Johnston markj at FreeBSD.org
Fri May 17 14:08:59 UTC 2019


Author: markj
Date: Fri May 17 14:08:58 2019
New Revision: 347904
URL: https://svnweb.freebsd.org/changeset/base/347904

Log:
  MFC r347564:
  Fix formatting.

Modified:
  stable/12/sys/amd64/amd64/trap.c
Directory Properties:
  stable/12/   (props changed)

Modified: stable/12/sys/amd64/amd64/trap.c
==============================================================================
--- stable/12/sys/amd64/amd64/trap.c	Fri May 17 13:08:12 2019	(r347903)
+++ stable/12/sys/amd64/amd64/trap.c	Fri May 17 14:08:58 2019	(r347904)
@@ -904,8 +904,8 @@ trap_fatal(frame, eva)
 			code & PGEX_U ? "user" : "supervisor",
 			code & PGEX_W ? "write" : "read",
 			code & PGEX_I ? "instruction" : "data",
-			code & PGEX_PK ? " prot key" : " ",
-			code & PGEX_SGX ? " SGX" : " ",
+			code & PGEX_PK ? " prot key" : "",
+			code & PGEX_SGX ? " SGX" : "",
 			code & PGEX_RSV ? "reserved bits in PTE" :
 			code & PGEX_P ? "protection violation" : "page not present");
 	}


More information about the svn-src-stable-12 mailing list