Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 14 Mar 2019 08:25:28 +0000 (UTC)
From:      "Andrey V. Elsukov" <ae@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-12@freebsd.org
Subject:   svn commit: r345125 - in stable/12/sys: amd64/amd64 i386/i386
Message-ID:  <201903140825.x2E8PSCW016585@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: ae
Date: Thu Mar 14 08:25:28 2019
New Revision: 345125
URL: https://svnweb.freebsd.org/changeset/base/345125

Log:
  MFC r344873:
    Fix typo.

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

Modified: stable/12/sys/amd64/amd64/vm_machdep.c
==============================================================================
--- stable/12/sys/amd64/amd64/vm_machdep.c	Thu Mar 14 02:46:03 2019	(r345124)
+++ stable/12/sys/amd64/amd64/vm_machdep.c	Thu Mar 14 08:25:28 2019	(r345125)
@@ -86,7 +86,7 @@ _Static_assert(OFFSETOF_CURTHREAD == offsetof(struct p
 _Static_assert(OFFSETOF_CURPCB == offsetof(struct pcpu, pc_curpcb),
     "OFFSETOF_CURPCB does not correspond with offset of pc_curpcb.");
 _Static_assert(OFFSETOF_MONITORBUF == offsetof(struct pcpu, pc_monitorbuf),
-    "OFFSETOF_MONINORBUF does not correspond with offset of pc_monitorbuf.");
+    "OFFSETOF_MONITORBUF does not correspond with offset of pc_monitorbuf.");
 
 struct savefpu *
 get_pcb_user_save_td(struct thread *td)

Modified: stable/12/sys/i386/i386/vm_machdep.c
==============================================================================
--- stable/12/sys/i386/i386/vm_machdep.c	Thu Mar 14 02:46:03 2019	(r345124)
+++ stable/12/sys/i386/i386/vm_machdep.c	Thu Mar 14 08:25:28 2019	(r345125)
@@ -95,7 +95,7 @@ _Static_assert(OFFSETOF_CURTHREAD == offsetof(struct p
 _Static_assert(OFFSETOF_CURPCB == offsetof(struct pcpu, pc_curpcb),
     "OFFSETOF_CURPCB does not correspond with offset of pc_curpcb.");
 _Static_assert(__OFFSETOF_MONITORBUF == offsetof(struct pcpu, pc_monitorbuf),
-    "__OFFSETOF_MONINORBUF does not correspond with offset of pc_monitorbuf.");
+    "__OFFSETOF_MONITORBUF does not correspond with offset of pc_monitorbuf.");
 
 union savefpu *
 get_pcb_user_save_td(struct thread *td)



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201903140825.x2E8PSCW016585>