svn commit: r310364 - stable/10/sys/amd64/amd64

Konstantin Belousov kib at FreeBSD.org
Wed Dec 21 11:34:17 UTC 2016


Author: kib
Date: Wed Dec 21 11:34:16 2016
New Revision: 310364
URL: https://svnweb.freebsd.org/changeset/base/310364

Log:
  MFC r310205:
  Fix typo.

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

Modified: stable/10/sys/amd64/amd64/trap.c
==============================================================================
--- stable/10/sys/amd64/amd64/trap.c	Wed Dec 21 11:32:08 2016	(r310363)
+++ stable/10/sys/amd64/amd64/trap.c	Wed Dec 21 11:34:16 2016	(r310364)
@@ -971,7 +971,7 @@ amd64_syscall(struct thread *td, int tra
 	}
 
 	KASSERT(PCB_USER_FPU(td->td_pcb),
-	    ("System call %s returing with kernel FPU ctx leaked",
+	    ("System call %s returning with kernel FPU ctx leaked",
 	     syscallname(td->td_proc, sa.code)));
 	KASSERT(td->td_pcb->pcb_save == get_pcb_user_save_td(td),
 	    ("System call %s returning with mangled pcb_save",


More information about the svn-src-all mailing list