From: Monty Date: Thu, 25 Mar 2010 05:22:15 +0000 (+0000) Subject: Kill off two harmless gcc warnings in vorbisenc.c X-Git-Tag: v1.3.3~72 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;ds=sidebyside;h=45dd1cba6b28b849bbb51f8694b5ac0315b5f89e;p=platform%2Fupstream%2Flibvorbis.git Kill off two harmless gcc warnings in vorbisenc.c svn path=/trunk/vorbis/; revision=17028 --- diff --git a/lib/vorbisenc.c b/lib/vorbisenc.c index 1b342bb..428d2aa 100644 --- a/lib/vorbisenc.c +++ b/lib/vorbisenc.c @@ -1186,8 +1186,8 @@ int vorbis_encode_ctl(vorbis_info *vi,int number,void *arg){ return(0); case OV_ECTL_COUPLING_SET: { - void *new_template; - double new_base; + const void *new_template; + double new_base=0.; int *iarg=(int *)arg; hi->coupling_p=((*iarg)!=0);