diff options
author | Solomon Peachy <pizza@shaftnet.org> | 2024-04-25 20:46:40 -0400 |
---|---|---|
committer | Solomon Peachy <pizza@shaftnet.org> | 2024-04-25 20:49:56 -0400 |
commit | 98971604c7798c1692aa540ac506d19af8866bd8 (patch) | |
tree | 7b1becb801119ebb2c7a9e2cb071e9f5709e2318 | |
parent | ba4b41663caf90a00db66e5dc4c083d21a1dbbe9 (diff) | |
download | rockbox-98971604c7.tar.gz rockbox-98971604c7.zip |
Correct one of the GCC14 warning workarounds
(Accidentally pushed an out-of-date commit)
Change-Id: I53a85420349d6fc12831a481becc2dd1617a8ed9
-rw-r--r-- | lib/rbcodec/codecs/libopus/celt/celt_lpc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/rbcodec/codecs/libopus/celt/celt_lpc.c b/lib/rbcodec/codecs/libopus/celt/celt_lpc.c index e925966508..9fbef15f83 100644 --- a/lib/rbcodec/codecs/libopus/celt/celt_lpc.c +++ b/lib/rbcodec/codecs/libopus/celt/celt_lpc.c @@ -209,7 +209,7 @@ void celt_iir(const opus_val32 *_x, #if (__GNUC__ == 14) // XXX nuke later? #pragma GCC diagnostic push -#pragma GCC diagnostic ignored "-Wstringop-overflow" +#pragma GCC diagnostic ignored "-Wmaybe-uninitialized" #endif int _celt_autocorr( const opus_val16 *x, /* in: [0...n-1] samples x */ |