The branch, master has been updated
       via  163518ffab8818d3e2e42d465026eb64721f68c9 (commit)
      from  0243cf89b137b093b02a5c61a76e28cec1d69ae9 (commit)


- Log -----------------------------------------------------------------
commit 163518ffab8818d3e2e42d465026eb64721f68c9
Author:     Levi Zim <rsworkt...@outlook.com>
AuthorDate: Tue Aug 19 11:22:37 2025 +0800
Commit:     Levi Zim <rsworkt...@outlook.com>
CommitDate: Tue Aug 19 11:29:18 2025 +0800

    avutil/riscv: add fallthrough comment to switch
    
    This fixes the following warning:
    
    libavutil/riscv/cpu.c:85:9: warning: label at end of compound statement is 
a C23 extension [-Wc23-extensions]
    
    Signed-off-by: Levi Zim <rsworkt...@outlook.com>

diff --git a/libavutil/riscv/cpu.c b/libavutil/riscv/cpu.c
index 163e4fc14a..5d7673ad11 100644
--- a/libavutil/riscv/cpu.c
+++ b/libavutil/riscv/cpu.c
@@ -82,6 +82,7 @@ int ff_get_cpu_flags_riscv(void)
                 ret |= AV_CPU_FLAG_RV_MISALIGNED;
                 break;
             default:
+                ; /* do nothing */
         }
     }
 #elif HAVE_GETAUXVAL || HAVE_ELF_AUX_INFO

-----------------------------------------------------------------------

Summary of changes:
 libavutil/riscv/cpu.c | 1 +
 1 file changed, 1 insertion(+)


hooks/post-receive
-- 

_______________________________________________
ffmpeg-cvslog mailing list
ffmpeg-cvslog@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog

To unsubscribe, visit link above, or email
ffmpeg-cvslog-requ...@ffmpeg.org with subject "unsubscribe".

Reply via email to