summaryrefslogtreecommitdiff
path: root/lib/rbcodec/codecs/libgme
diff options
context:
space:
mode:
authorSolomon Peachy <pizza@shaftnet.org>2022-07-11 16:09:02 -0400
committerSolomon Peachy <pizza@shaftnet.org>2022-07-11 16:11:29 -0400
commit05149cd4dc3896103a58903f635dc42135c53d96 (patch)
tree6cf16da60fb45c2d44273f1507f18f7cb17b61b8 /lib/rbcodec/codecs/libgme
parent4917f764bbb9580d9ec312794c0d7ae71c6792e1 (diff)
downloadrockbox-05149cd4dc3896103a58903f635dc42135c53d96.tar.gz
rockbox-05149cd4dc3896103a58903f635dc42135c53d96.zip
Fix a couple of warnings uncovered by GCC12
Change-Id: Ib628a27bfc6f95a822e46b931ccfbed90f41b122
Diffstat (limited to 'lib/rbcodec/codecs/libgme')
-rw-r--r--lib/rbcodec/codecs/libgme/blip_buffer.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/rbcodec/codecs/libgme/blip_buffer.c b/lib/rbcodec/codecs/libgme/blip_buffer.c
index ba0a6558d2..9aaa9d2482 100644
--- a/lib/rbcodec/codecs/libgme/blip_buffer.c
+++ b/lib/rbcodec/codecs/libgme/blip_buffer.c
@@ -53,7 +53,9 @@ void Blip_clear( struct Blip_Buffer* this )
53 this->reader_accum_ = 0; 53 this->reader_accum_ = 0;
54 this->modified = false; 54 this->modified = false;
55 55
56#if 0 // this is redundant as buffer is static and triggers -Waddress
56 if ( this->buffer_ ) 57 if ( this->buffer_ )
58#endif
57 { 59 {
58 int count = (entire_buffer ? this->buffer_size_ : Blip_samples_avail( this )); 60 int count = (entire_buffer ? this->buffer_size_ : Blip_samples_avail( this ));
59 memset( this->buffer_, 0, (count + blip_buffer_extra_) * sizeof (delta_t) ); 61 memset( this->buffer_, 0, (count + blip_buffer_extra_) * sizeof (delta_t) );