From f6b21eca5e4c9300d00ff895a6dc371c2f4411ca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Storsj=C3=B6?= Date: Fri, 10 Apr 2026 12:00:50 +0300 Subject: [PATCH] tools/check_arm_indent: Add missing ;; in switch case, fix indentation --- tools/check_arm_indent.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tools/check_arm_indent.sh b/tools/check_arm_indent.sh index 5becfe0aec..37029aae3d 100755 --- a/tools/check_arm_indent.sh +++ b/tools/check_arm_indent.sh @@ -35,9 +35,10 @@ ret=0 for i in */aarch64/*.S */aarch64/*/*.S; do case $i in - libavcodec/aarch64/h264idct_neon.S|libavcodec/aarch64/h26x/epel_neon.S|libavcodec/aarch64/h26x/qpel_neon.S|libavcodec/aarch64/vc1dsp_neon.S) + libavcodec/aarch64/h264idct_neon.S|libavcodec/aarch64/h26x/epel_neon.S|libavcodec/aarch64/h26x/qpel_neon.S|libavcodec/aarch64/vc1dsp_neon.S) # Skip files with known (and tolerated) deviations from the tool. continue + ;; esac ./tools/indent_arm_assembly.pl < "$i" > tmp.S || ret=$? if ! git diff --quiet --no-index "$i" tmp.S; then