From c69b006eacc8da514f87bc3b92dbea5241252c54 Mon Sep 17 00:00:00 2001 From: Ken Cooke Date: Fri, 8 Jun 2018 06:29:30 -0700 Subject: [PATCH] Fix compiler warnings --- libraries/audio/src/flump3dec.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libraries/audio/src/flump3dec.cpp b/libraries/audio/src/flump3dec.cpp index d6161b16b1..8004eebc33 100644 --- a/libraries/audio/src/flump3dec.cpp +++ b/libraries/audio/src/flump3dec.cpp @@ -7532,7 +7532,7 @@ mp3tl_sync (mp3tl * tl) g_return_val_if_fail (tl != NULL, MP3TL_ERR_PARAM); if (tl->need_sync) { - guint64 sync_start; + guint64 sync_start ATTR_UNUSED; /* Find a sync word, with valid header */ bs_reset (tl->bs); @@ -7551,7 +7551,7 @@ mp3tl_sync (mp3tl * tl) guint64 frame_start; fr_header *hdr = &tl->fr_ps.header; gboolean valid = TRUE; - guint64 total_offset; + guint64 total_offset ATTR_UNUSED; sync = bs_seek_sync (tl->bs); offset = bs_read_pos (tl->bs) - bs_pos (tl->bs); @@ -7731,7 +7731,7 @@ mp3tl_decode_header (mp3tl * tl, const fr_header ** ret_hdr) Mp3TlRetcode mp3tl_gather_frame (mp3tl * tl, guint64 * _offset, gint * _length) { - guint64 sync_start; + guint64 sync_start ATTR_UNUSED; gboolean sync; guint64 offset; guint64 frame_start;