# HG changeset patch # User diego # Date 1180340303 0 # Node ID 8ef36374e8c5a8588e0c49d107ebf7db8e72671a # Parent 0c6e8d9da11a27c70d64222c27a7b748ad71014b Move variable declaration into conditional to avoid an unused variable warning. diff -r 0c6e8d9da11a -r 8ef36374e8c5 libmpcodecs/ad_libvorbis.c --- a/libmpcodecs/ad_libvorbis.c Mon May 28 08:12:41 2007 +0000 +++ b/libmpcodecs/ad_libvorbis.c Mon May 28 08:18:23 2007 +0000 @@ -220,9 +220,9 @@ #ifdef TREMOR ogg_int32_t **pcm; #else + float scale; float **pcm; #endif - float scale; struct ov_struct_st *ov = sh->context; while(len < minlen) { while((samples=vorbis_synthesis_pcmout(&ov->vd,&pcm))<=0){