summaryrefslogtreecommitdiff
path: root/lib/libpthread
diff options
context:
space:
mode:
authorskrll <skrll@NetBSD.org>2017-07-17 20:24:07 +0000
committerskrll <skrll@NetBSD.org>2017-07-17 20:24:07 +0000
commit07fb7fc8a2ddd5e05e8e86ceb91aed6e865fef3e (patch)
tree3e7dfb69b9dc8e641f413c43cd1ce670f171a4aa /lib/libpthread
parentd956b494a580852eaf08571404d91df9a6704286 (diff)
Typo in comment
Diffstat (limited to 'lib/libpthread')
-rw-r--r--lib/libpthread/arch/arm/pthread_md.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libpthread/arch/arm/pthread_md.h b/lib/libpthread/arch/arm/pthread_md.h
index 153c39fad86..c1e595a57e9 100644
--- a/lib/libpthread/arch/arm/pthread_md.h
+++ b/lib/libpthread/arch/arm/pthread_md.h
@@ -1,4 +1,4 @@
-/* $NetBSD: pthread_md.h,v 1.9 2013/08/15 22:37:29 matt Exp $ */
+/* $NetBSD: pthread_md.h,v 1.10 2017/07/17 20:24:07 skrll Exp $ */
/*
* Copyright (c) 2001 Wasabi Systems, Inc.
@@ -72,7 +72,7 @@ pthread__sp(void)
(ucp)->uc_mcontext.__gregs[_REG_PC] = \
((ucp)->uc_mcontext.__gregs[_REG_PC] & 0x3fffffc) | 0x0;
#else
-/* Set CPSR to PSR_USE32_MODE (0x10) from arm/armreg.h */
+/* Set CPSR to PSR_USR32_MODE (0x10) from arm/armreg.h */
#define _INITCONTEXT_U_MD(ucp) \
(ucp)->uc_mcontext.__gregs[_REG_CPSR] = 0x10;
#endif