diff options
author | Aaron Campbell <aaron@cvs.openbsd.org> | 2005-02-16 14:37:07 +0000 |
---|---|---|
committer | Aaron Campbell <aaron@cvs.openbsd.org> | 2005-02-16 14:37:07 +0000 |
commit | 0e79465e5eb889e3928ab33dd46da0338d170fa8 (patch) | |
tree | db4e01f498e1ad79bd6d1acb21e7887bbdf32c72 /sys/arch/macppc | |
parent | 6adaef0b472ca68d8adbd71a26f2386ec38abd87 (diff) |
Fix indentation to match similar code block below.
Diffstat (limited to 'sys/arch/macppc')
-rw-r--r-- | sys/arch/macppc/dev/macintr.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/macppc/dev/macintr.c b/sys/arch/macppc/dev/macintr.c index 741e8d282e7..c7d809951d6 100644 --- a/sys/arch/macppc/dev/macintr.c +++ b/sys/arch/macppc/dev/macintr.c @@ -1,4 +1,4 @@ -/* $OpenBSD: macintr.c,v 1.25 2004/10/01 20:28:42 miod Exp $ */ +/* $OpenBSD: macintr.c,v 1.26 2005/02/16 14:37:06 aaron Exp $ */ /*- * Copyright (c) 1995 Per Fogelstrom @@ -603,7 +603,7 @@ read_irq() state0 = in32rb(INT_STATE_REG0); if (state0) out32rb(INT_CLEAR_REG0, state0); - state0save = state0; + state0save = state0; while (state0) { p = 31 - cntlzw(state0); rv |= 1 << m_virq[p]; |