summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormiod <miod@openbsd.org>2006-02-09 06:45:41 +0000
committermiod <miod@openbsd.org>2006-02-09 06:45:41 +0000
commit37d15002ca81021fd7fac06bb35e88d55bd8d51f (patch)
tree2eeacafa0cbb35b557c02b58f16943b3322e6dd0
parenttypo (diff)
downloadwireguard-openbsd-37d15002ca81021fd7fac06bb35e88d55bd8d51f.tar.xz
wireguard-openbsd-37d15002ca81021fd7fac06bb35e88d55bd8d51f.zip
Oops, put the default case outside the ADBVERBOSE block in adbprint().
-rw-r--r--sys/dev/adb/adb_subr.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/adb/adb_subr.c b/sys/dev/adb/adb_subr.c
index 839f2aa6878..c69bf3caab8 100644
--- a/sys/dev/adb/adb_subr.c
+++ b/sys/dev/adb/adb_subr.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: adb_subr.c,v 1.1 2006/01/18 23:21:17 miod Exp $ */
+/* $OpenBSD: adb_subr.c,v 1.2 2006/02/09 06:45:41 miod Exp $ */
/* $NetBSD: adb.c,v 1.6 1999/08/16 06:28:09 tsubai Exp $ */
/*-
@@ -93,11 +93,11 @@ adbprint(void *args, const char *name)
break;
}
break;
+#endif /* ADBVERBOSE */
default:
printf("unknown type %d device, (handler %d)",
aa_args->origaddr, aa_args->handler_id);
break;
-#endif /* ADBVERBOSE */
}
printf(" at %s", name);
}