diff mbox series

[isar-cip-core] start-qemu: Add missing case termination

Message ID 2833b182-7081-95a2-a67b-81c45c214f75@siemens.com (mailing list archive)
State Accepted
Headers show
Series [isar-cip-core] start-qemu: Add missing case termination | expand

Commit Message

Jan Kiszka March 13, 2023, 9:30 a.m. UTC
From: Jan Kiszka <jan.kiszka@siemens.com>

Just a style change so far because there are no other cases.

Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
---
 start-qemu.sh | 1 +
 1 file changed, 1 insertion(+)
diff mbox series

Patch

diff --git a/start-qemu.sh b/start-qemu.sh
index 44fb4196..9dce0183 100755
--- a/start-qemu.sh
+++ b/start-qemu.sh
@@ -140,6 +140,7 @@  if [ -z "${DISPLAY}" ]; then
 	case "${arch}" in
 		x86|x86_64|amd64)
 			KERNEL_CMDLINE="${KERNEL_CMDLINE} console=ttyS0"
+			;;
 	esac
 fi