diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2011-09-18 19:23:47 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2011-09-18 19:23:47 +0000 |
commit | 1ade2fc38cdb72cd6688c476cf27f596315fa65e (patch) | |
tree | 667590e4bb19454192b85cda1a1cf0c7e22a552d /sys/arch | |
parent | eb61d31771121cc23c2ce83f4bf41d90952afe2a (diff) |
Fix exchanged arguments in a "can't happen" printf
Diffstat (limited to 'sys/arch')
-rw-r--r-- | sys/arch/hp300/dev/mb89352.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/hp300/dev/mb89352.c b/sys/arch/hp300/dev/mb89352.c index cdbf3627463..43cfdfc5fbc 100644 --- a/sys/arch/hp300/dev/mb89352.c +++ b/sys/arch/hp300/dev/mb89352.c @@ -1,4 +1,4 @@ -/* $OpenBSD: mb89352.c,v 1.28 2011/05/30 20:01:29 miod Exp $ */ +/* $OpenBSD: mb89352.c,v 1.29 2011/09/18 19:23:46 miod Exp $ */ /* $NetBSD: mb89352.c,v 1.5 2000/03/23 07:01:31 thorpej Exp $ */ /* NecBSD: mb89352.c,v 1.4 1998/03/14 07:31:20 kmatsuda Exp */ @@ -998,7 +998,7 @@ nextbyte: default: printf("%s: unrecognized MESSAGE EXTENDED 0x%x;" " sending REJECT\n", - sc->sc_imess[2], sc->sc_dev.dv_xname); + sc->sc_dev.dv_xname, sc->sc_imess[2]); SPC_BREAK(); goto reject; } |