diff options
author | 2002-06-19 06:31:23 +0000 | |
---|---|---|
committer | 2002-06-19 06:31:23 +0000 | |
commit | af7801111ea848f915eb7f33f906f604b4fdb9f6 (patch) | |
tree | 5ca2345d74e273b7e05134a0f1cc88c51dbabbf2 | |
parent | rename variable so that scoping is more obvious (diff) | |
download | wireguard-openbsd-af7801111ea848f915eb7f33f906f604b4fdb9f6.tar.xz wireguard-openbsd-af7801111ea848f915eb7f33f906f604b4fdb9f6.zip |
Fix compilation error if option DEBUG is defined.
Reported by Peter Philipp (pphilipp at mac dot com)
-rw-r--r-- | sys/arch/macppc/dev/abtn.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/macppc/dev/abtn.c b/sys/arch/macppc/dev/abtn.c index dcfff9915d9..039c7f714c5 100644 --- a/sys/arch/macppc/dev/abtn.c +++ b/sys/arch/macppc/dev/abtn.c @@ -1,4 +1,4 @@ -/* $OpenBSD: abtn.c,v 1.4 2002/05/22 21:01:14 miod Exp $ */ +/* $OpenBSD: abtn.c,v 1.5 2002/06/19 06:31:23 miod Exp $ */ /* $NetBSD: abtn.c,v 1.1 1999/07/12 17:48:26 tsubai Exp $ */ /*- @@ -135,7 +135,7 @@ abtn_adbcomplete(buffer, data, adb_command) break; default: - if ((cmd & ~0x7f) == 0)) + if ((cmd & ~0x7f) == 0) printf("unknown ADB button %d\n", cmd); break; #endif |