diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1997-06-05 23:21:31 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1997-06-05 23:21:31 +0000 |
commit | e17d5713fdfb721c5673cc962be3070871411e2e (patch) | |
tree | 4a8c788a6b139c57296580faac5e7ebfbca95235 | |
parent | dec8a5cbed790eeaf910a3ad528fe3bb68596532 (diff) |
non-DEBUG __abs_nonsingle correct use; grr
-rw-r--r-- | sys/arch/alpha/include/bus.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/alpha/include/bus.h b/sys/arch/alpha/include/bus.h index ca766c26955..a3ead3a2bf5 100644 --- a/sys/arch/alpha/include/bus.h +++ b/sys/arch/alpha/include/bus.h @@ -1,4 +1,4 @@ -/* $OpenBSD: bus.h,v 1.8 1997/04/10 01:28:53 millert Exp $ */ +/* $OpenBSD: bus.h,v 1.9 1997/06/05 23:21:30 deraadt Exp $ */ /* $NetBSD: bus.h,v 1.10 1996/12/02 22:19:32 cgd Exp $ */ /* @@ -190,7 +190,7 @@ struct alpha_bus_space { (*(t)->__abs_opname(type,sz))((t)->abs_cookie, h, o, a, c) #ifndef DEBUG #define __abs_aligned_nonsingle(type, sz, t, h, o, a, c) \ - __abs_nonsingle((type), (sz), (t), (h), (o), (a), (c)) + __abs_nonsingle(type, sz, (t), (h), (o), (a), (c)) #else #define __abs_aligned_nonsingle(type, sz, t, h, o, a, c) \ |