From a9b3d932607a0b6e813a3152036988bf050148f9 Mon Sep 17 00:00:00 2001 From: Ken Cooke Date: Thu, 7 Jun 2018 08:37:48 -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 4406d8bbcf..72a124fbd1 100644 --- a/libraries/audio/src/flump3dec.cpp +++ b/libraries/audio/src/flump3dec.cpp @@ -287,8 +287,8 @@ typedef struct } huffdec_bitbuf; /* Huffman Decoder bit buffer functions */ -void h_setbuf (huffdec_bitbuf * bb, guint8 * buf, guint size); -void h_reset (huffdec_bitbuf * bb); +static void h_setbuf (huffdec_bitbuf * bb, guint8 * buf, guint size); +static void h_reset (huffdec_bitbuf * bb); #if ENABLE_OPT_BS static inline guint32 h_get1bit (huffdec_bitbuf * bb); @@ -301,7 +301,7 @@ static inline void h_flushbits (huffdec_bitbuf * bb, guint N); /* read N bits from the bit stream */ static inline guint32 h_getbits (huffdec_bitbuf * bb, guint N); -void h_rewindNbits (huffdec_bitbuf * bb, guint N); +static void h_rewindNbits (huffdec_bitbuf * bb, guint N); static inline void h_byte_align (huffdec_bitbuf * bb); static inline guint h_bytes_avail (huffdec_bitbuf * bb);