[vlc-devel] commit: audio_output: Fix an unused parameter in the NDEBUG case. (Pierre d 'Herbemont )

git version control git at videolan.org
Wed Aug 13 01:19:48 CEST 2008


vlc | branch: master | Pierre d'Herbemont <pdherbemont at videolan.org> | Wed Aug 13 01:22:42 2008 +0200| [6da58d2af63c541668ff4b50774b3dc2c10a12e8] | committer: Pierre d'Herbemont 

audio_output: Fix an unused parameter in the NDEBUG case.

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=6da58d2af63c541668ff4b50774b3dc2c10a12e8
---

 src/audio_output/common.c |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)

diff --git a/src/audio_output/common.c b/src/audio_output/common.c
index fba6665..e3bbb06 100644
--- a/src/audio_output/common.c
+++ b/src/audio_output/common.c
@@ -58,6 +58,9 @@ static inline void aout_assert_fifo_locked( aout_instance_t * p_aout, aout_fifo_
         if( i == p_aout->i_nb_inputs )
             vlc_assert_locked( &p_aout->mixer_lock );
     }
+#else
+    (void)p_aout;
+    (void)p_fifo;
 #endif
 }
 




More information about the vlc-devel mailing list