diff options
author | Klemens Nanni <kn@cvs.openbsd.org> | 2023-03-29 16:20:18 +0000 |
---|---|---|
committer | Klemens Nanni <kn@cvs.openbsd.org> | 2023-03-29 16:20:18 +0000 |
commit | ad4098651d30151d5be52feab8b0a066cfb45705 (patch) | |
tree | 88ae7e3f77b179ce3e5cf0838974ea90b5bda756 /distrib/arm64 | |
parent | 4389aacfb648b8dd6607fe0f87fa4919eb1412db (diff) |
Add missing semicolon to properly end switch case
There since introduction, lucked out since it is the last case.
No functional change.
Diffstat (limited to 'distrib/arm64')
-rw-r--r-- | distrib/arm64/ramdisk/install.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/distrib/arm64/ramdisk/install.md b/distrib/arm64/ramdisk/install.md index 74c431dddae..c899261376b 100644 --- a/distrib/arm64/ramdisk/install.md +++ b/distrib/arm64/ramdisk/install.md @@ -1,4 +1,4 @@ -# $OpenBSD: install.md,v 1.40 2023/03/29 00:25:47 kn Exp $ +# $OpenBSD: install.md,v 1.41 2023/03/29 16:20:17 kn Exp $ # # # Copyright (c) 1996 The NetBSD Foundation, Inc. @@ -41,7 +41,7 @@ md_installboot() { case $(sysctl -n machdep.compatible) in apple,*) _plat=apple;; pine64,pine64*(+)) _plat=pine64;; - raspberrypi,*) _plat=rpi; + raspberrypi,*) _plat=rpi;; esac if ! installboot -r /mnt ${1}; then |