svn commit: r347564 - head/sys/amd64/amd64

Mark Johnston markj at FreeBSD.org
Tue May 14 15:19:49 UTC 2019


Author: markj
Date: Tue May 14 15:19:48 2019
New Revision: 347564
URL: https://svnweb.freebsd.org/changeset/base/347564

Log:
  Fix formatting.
  
  MFC after:	3 days

Modified:
  head/sys/amd64/amd64/trap.c

Modified: head/sys/amd64/amd64/trap.c
==============================================================================
--- head/sys/amd64/amd64/trap.c	Tue May 14 10:21:28 2019	(r347563)
+++ head/sys/amd64/amd64/trap.c	Tue May 14 15:19:48 2019	(r347564)
@@ -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-head mailing list