This is an automated email from the git hooks/post-receive script.

Git pushed a commit to branch master
in repository ffmpeg.

commit f6b21eca5e4c9300d00ff895a6dc371c2f4411ca
Author:     Martin Storsjö <[email protected]>
AuthorDate: Fri Apr 10 12:00:50 2026 +0300
Commit:     Martin Storsjö <[email protected]>
CommitDate: Wed Apr 29 13:53:07 2026 +0300

    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

_______________________________________________
ffmpeg-cvslog mailing list -- [email protected]
To unsubscribe send an email to [email protected]

Reply via email to