[xiph-commits] r9995 - trunk/speex/libspeex

thomasvs at svn.xiph.org thomasvs at svn.xiph.org
Wed Sep 7 12:25:29 PDT 2005


Author: thomasvs
Date: 2005-09-07 12:25:27 -0700 (Wed, 07 Sep 2005)
New Revision: 9995

Modified:
   trunk/speex/libspeex/cb_search.c
Log:
declare n only if FIXED POINT not used

Modified: trunk/speex/libspeex/cb_search.c
===================================================================
--- trunk/speex/libspeex/cb_search.c	2005-09-07 19:16:00 UTC (rev 9994)
+++ trunk/speex/libspeex/cb_search.c	2005-09-07 19:25:27 UTC (rev 9995)
@@ -112,7 +112,10 @@
 int   update_target
 )
 {
-   int i,j,m,n,q;
+   int i,j,m,q;
+#ifndef FIXED_POINT
+   int n;
+#endif
    VARDECL(spx_word16_t *resp);
 #ifdef _USE_SSE
    VARDECL(__m128 *resp2);



More information about the commits mailing list