shithub: jbig2

Download patch

ref: 865f3114b422acadb98f51f9ffdaf92bfe8e680d
parent: 85bf278b42fe3059dc8774d6f257dbc07ac50679
author: giles <giles@ded80894-8fb9-0310-811b-c03f3676ab4d>
date: Sat Aug 10 06:39:20 EDT 2002

refine const ** to const * const * to avoid warnings.


git-svn-id: http://svn.ghostscript.com/jbig2dec/trunk@193 ded80894-8fb9-0310-811b-c03f3676ab4d

--- a/jbig2_text.c
+++ b/jbig2_text.c
@@ -8,7 +8,7 @@
     the Free Software Foundation; either version 2 of the License, or
     (at your option) any later version.
 
-    $Id: jbig2_text.c,v 1.18 2002/08/05 23:07:54 giles Exp $
+    $Id: jbig2_text.c,v 1.19 2002/08/10 10:39:20 giles Exp $
 */
 
 #ifdef HAVE_CONFIG_H
@@ -83,7 +83,7 @@
 static int
 jbig2_decode_text_region(Jbig2Ctx *ctx, Jbig2Segment *segment,
                              const Jbig2TextRegionParams *params,
-                             const Jbig2SymbolDict **dicts, const int n_dicts,
+                             const Jbig2SymbolDict * const *dicts, const int n_dicts,
                              Jbig2Image *image,
                              const byte *data, const size_t size)
 {