From 2bd3e94e5e0adf9fe52463a7f5d1b45702484193 Mon Sep 17 00:00:00 2001 From: Alcaro Date: Wed, 29 Jun 2016 18:01:07 +0200 Subject: [PATCH] Apparently Coverity doesn't like this either. --- cores/libretro-ffmpeg/fft/fft.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cores/libretro-ffmpeg/fft/fft.cpp b/cores/libretro-ffmpeg/fft/fft.cpp index 7051adccee..8bb4d72df9 100644 --- a/cores/libretro-ffmpeg/fft/fft.cpp +++ b/cores/libretro-ffmpeg/fft/fft.cpp @@ -305,7 +305,7 @@ static void fft_step(glfft_t *fft, static inline unsigned log2i(unsigned x) { - if (x==0) return 0xBADF00D4U; // shouldn't happen + if (x==0) return 0; // shouldn't happen unsigned res; for (res = 0; x; x >>= 1)