[xiph-commits] r14356 - trunk/theora/lib/dec

tterribe at svn.xiph.org tterribe at svn.xiph.org
Fri Jan 4 12:04:13 PST 2008


Author: tterribe
Date: 2008-01-04 12:04:12 -0800 (Fri, 04 Jan 2008)
New Revision: 14356

Modified:
   trunk/theora/lib/dec/huffdec.c
Log:
Fix const usage to match declaration.


Modified: trunk/theora/lib/dec/huffdec.c
===================================================================
--- trunk/theora/lib/dec/huffdec.c	2008-01-04 20:00:35 UTC (rev 14355)
+++ trunk/theora/lib/dec/huffdec.c	2008-01-04 20:04:12 UTC (rev 14356)
@@ -251,7 +251,7 @@
   _dst: The array to store the copy in.
   _src: The array of trees to copy.*/
 void oc_huff_trees_copy(oc_huff_node *_dst[TH_NHUFFMAN_TABLES],
- /*const*/ oc_huff_node *const _src[TH_NHUFFMAN_TABLES]){
+ const oc_huff_node *const _src[TH_NHUFFMAN_TABLES]){
   int i;
   for(i=0;i<TH_NHUFFMAN_TABLES;i++)_dst[i]=oc_huff_tree_copy(_src[i]);
 }



More information about the commits mailing list