[FFmpeg-devel] [PATCH 4/4] avutil/tx: add a return at the end of non-void functions
Lynne
dev at lynne.ee
Fri Aug 6 16:49:28 EEST 2021
6 Aug 2021, 15:31 by jamrial at gmail.com:
> Fixes compilation with GCC 11 when configured with --disable-optimizations
>
> Signed-off-by: James Almer <jamrial at gmail.com>
> ---
> libavutil/tx.c | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/libavutil/tx.c b/libavutil/tx.c
> index 25adb6b37e..fa81ada2f1 100644
> --- a/libavutil/tx.c
> +++ b/libavutil/tx.c
> @@ -38,6 +38,7 @@ static av_always_inline int mulinv(int n, int m)
> if (((n * x) % m) == 1)
> return x;
> av_assert0(0); /* Never reached */
> + return 0;
> }
>
LGTM, thanks. I did think it was a little suspicious it let me write it like that.
More information about the ffmpeg-devel
mailing list