tools/check_arm_indent: Add missing ;; in switch case, fix indentation

This commit is contained in:
Martin Storsjö
2026-04-10 12:00:50 +03:00
parent 963ea707e3
commit f6b21eca5e
+2 -1
View File
@@ -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