diff options
author | 2000-07-27 16:33:39 +0000 | |
---|---|---|
committer | 2000-07-27 16:33:39 +0000 | |
commit | 90e438c67718dfdd20f4a897caf20fe646bb383e (patch) | |
tree | 400d0439fdfdb5c5fc36ce9249338cc90fc34381 | |
parent | do not forward packet with :: in the source. (diff) | |
download | wireguard-openbsd-90e438c67718dfdd20f4a897caf20fe646bb383e.tar.xz wireguard-openbsd-90e438c67718dfdd20f4a897caf20fe646bb383e.zip |
fix espie@'s screwup; frenchies can't type! noticed by aaron@
-rw-r--r-- | sys/arch/i386/include/bus.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/i386/include/bus.h b/sys/arch/i386/include/bus.h index 99df8f1dd0a..06e2a5520e8 100644 --- a/sys/arch/i386/include/bus.h +++ b/sys/arch/i386/include/bus.h @@ -1,4 +1,4 @@ -/* $OpenBSD: bus.h,v 1.20 2000/04/08 05:50:50 aaron Exp $ */ +/* $OpenBSD: bus.h,v 1.21 2000/07/27 16:33:39 mickey Exp $ */ /* $NetBSD: bus.h,v 1.6 1996/11/10 03:19:25 thorpej Exp $ */ /*- @@ -745,7 +745,7 @@ void bus_space_free __P((bus_space_tag_t t, bus_space_handle_t bsh, cld ; \ repne ; \ movsw" : \ - "=D" (_port2), "=S" (_port1), "=c" (_(cnt)) : \ + "=D" (_port2), "=S" (_port1), "=c" ((_cnt)) : \ "0" (_port2), "1" (_port1), "2" ((_cnt)) : \ "memory", "cc"); \ } \ |