diff options
author | Claudio Jeker <claudio@cvs.openbsd.org> | 2020-03-05 09:28:32 +0000 |
---|---|---|
committer | Claudio Jeker <claudio@cvs.openbsd.org> | 2020-03-05 09:28:32 +0000 |
commit | 5a9fa5cc03096981f8fd7c7af80a07fe97261c8e (patch) | |
tree | bad31e4556729eebeea6e3d2559fbc6411bacb5c /sys/arch/powerpc | |
parent | b40d0561eae6faa914d6608ab9b8aec21719bb3c (diff) |
The 'lock spun out' db_printf needs a newline. All other MP_LOCKDEBUG
messages do have the newline already.
OK anton@ kettenis@
Diffstat (limited to 'sys/arch/powerpc')
-rw-r--r-- | sys/arch/powerpc/powerpc/lock_machdep.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/powerpc/powerpc/lock_machdep.c b/sys/arch/powerpc/powerpc/lock_machdep.c index de6690da5a8..b9d2d1a9774 100644 --- a/sys/arch/powerpc/powerpc/lock_machdep.c +++ b/sys/arch/powerpc/powerpc/lock_machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: lock_machdep.c,v 1.7 2017/12/04 09:51:03 mpi Exp $ */ +/* $OpenBSD: lock_machdep.c,v 1.8 2020/03/05 09:28:31 claudio Exp $ */ /* * Copyright (c) 2007 Artur Grabowski <art@openbsd.org> @@ -55,7 +55,7 @@ __mp_lock_spin(struct __mp_lock *mpl) CPU_BUSY_CYCLE(); if (nticks == 0) { - db_printf("__mp_lock(%p): lock spun out", mpl); + db_printf("__mp_lock(%p): lock spun out\n", mpl); db_enter(); } #endif |