diff options
author | 2001-07-25 08:21:08 +0000 | |
---|---|---|
committer | 2001-07-25 08:21:08 +0000 | |
commit | 241dae4e5332e31506d8ff952a2975e740e4d4e6 (patch) | |
tree | 0d90e3e92592b9176a09f624a72b466bac3e9d09 /sys | |
parent | ISO 3166-1 country names and code elements; ok millert@ (diff) | |
download | wireguard-openbsd-241dae4e5332e31506d8ff952a2975e740e4d4e6.tar.xz wireguard-openbsd-241dae4e5332e31506d8ff952a2975e740e4d4e6.zip |
Added missing break. -moj
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/powerpc/mac/akbd.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/arch/powerpc/mac/akbd.c b/sys/arch/powerpc/mac/akbd.c index a86ae62a8d7..893d574cc44 100644 --- a/sys/arch/powerpc/mac/akbd.c +++ b/sys/arch/powerpc/mac/akbd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: akbd.c,v 1.9 2001/07/17 23:34:14 drahn Exp $ */ +/* $OpenBSD: akbd.c,v 1.10 2001/07/25 08:21:08 maja Exp $ */ /* $NetBSD: akbd.c,v 1.13 2001/01/25 14:08:55 tsubai Exp $ */ /* @@ -236,6 +236,7 @@ akbdattach(parent, self, aux) break; case ADB_IBITISOKBD: printf("iBook keyboard with inverted T (ISO layout)\n"); + break; default: printf("mapped device (%d)\n", sc->handler_id); break; |