summaryrefslogtreecommitdiff
path: root/sys/dev/adb
diff options
context:
space:
mode:
authorMiod Vallat <miod@cvs.openbsd.org>2006-02-09 06:45:42 +0000
committerMiod Vallat <miod@cvs.openbsd.org>2006-02-09 06:45:42 +0000
commitd0c8f466e6202fa8692c280b350d825cbd110d54 (patch)
tree2e72c33c1c31241ff48b17a1fbcd4807d326aacb /sys/dev/adb
parentc51f8c95c335c1575f7ed65cc84bf73e5cd7fe23 (diff)
Oops, put the default case outside the ADBVERBOSE block in adbprint().
Diffstat (limited to 'sys/dev/adb')
-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);
}