diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2007-05-19 20:50:07 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2007-05-19 20:50:07 +0000 |
commit | 8741427f96c8b2e1530e0336cb4b24bf65b821ba (patch) | |
tree | 5bbfe0e8c151d98b4ba228ee43cfe5d75ae07df9 /sys | |
parent | 7a45f464089291610f6169ee4ec321a760d3d0d5 (diff) |
Oops, get the ``disabling cpu'' message correct.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/mvme88k/mvme88k/m188_machdep.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/mvme88k/mvme88k/m188_machdep.c b/sys/arch/mvme88k/mvme88k/m188_machdep.c index b4150e6cc55..82b7512ea45 100644 --- a/sys/arch/mvme88k/mvme88k/m188_machdep.c +++ b/sys/arch/mvme88k/mvme88k/m188_machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: m188_machdep.c,v 1.31 2007/05/19 20:33:50 miod Exp $ */ +/* $OpenBSD: m188_machdep.c,v 1.32 2007/05/19 20:50:06 miod Exp $ */ /* * Copyright (c) 1998, 1999, 2000, 2001 Steve Murphree, Jr. * Copyright (c) 1996 Nivas Madhur @@ -483,7 +483,7 @@ m188_ext_int(u_int v, struct trapframe *eframe) if (cpu != master_cpu) { if (++problems >= 10) { printf("cpu%d: interrupt pin won't clear, " - "disabling processor\n"); + "disabling processor\n", cpu); set_psr(get_psr() | PSR_IND); for (;;) ; } |