diff options
author | Solomon Peachy <pizza@shaftnet.org> | 2023-07-01 21:24:57 -0400 |
---|---|---|
committer | Solomon Peachy <pizza@shaftnet.org> | 2023-07-02 20:45:16 -0400 |
commit | 102dc49ed9d1e81fe3920ea32260bf1bfa799fc0 (patch) | |
tree | 3602b5d68f5a36606e514f1218cf0770280534a5 | |
parent | 9fd59557fc3c26f32e9ad532bc725a4d7206dfff (diff) | |
download | rockbox-102dc49ed9.tar.gz rockbox-102dc49ed9.zip |
libmusepack: Fix inconsistent definition of an array size
Change-Id: If91eed5a0cbce44723e9581dce7de02e644f7e3e
-rw-r--r-- | lib/rbcodec/codecs/libmusepack/mpc_decoder.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/rbcodec/codecs/libmusepack/mpc_decoder.c b/lib/rbcodec/codecs/libmusepack/mpc_decoder.c index 3bfc4cc7fc..f0cb75e5d2 100644 --- a/lib/rbcodec/codecs/libmusepack/mpc_decoder.c +++ b/lib/rbcodec/codecs/libmusepack/mpc_decoder.c @@ -56,7 +56,7 @@ extern const mpc_can_data mpc_can_Bands; extern const mpc_can_data mpc_can_SCFI[2]; extern const mpc_can_data mpc_can_DSCF[2]; extern const mpc_can_data mpc_can_Res [2]; -extern const mpc_can_data mpc_can_Q [8][2]; +extern const mpc_can_data mpc_can_Q [6][2]; extern const mpc_can_data mpc_can_Q1; extern const mpc_can_data mpc_can_Q9up; |