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 <rsworktech@outlook.com>
This commit is contained in:
Levi Zim
2025-08-19 11:22:37 +08:00
parent 0243cf89b1
commit 163518ffab

View File

@@ -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