jbig2dec

Ralph Giles <[email protected]> Mon, 05 Aug 2002 15:47:55 -0700
Newsgroups gmane.comp.printing.ghostscript.jbig2dec.cvs
Message-ID <[email protected]>
Update of /cvsroot/jbig2dec/jbig2dec
In directory usw-pr-cvs1:/tmp/cvs-serv24554

Modified Files:
	jbig2_priv.h 
Log Message:
make the buffer rd/wr offsets unsigned ints to avoid signed/unsigned
warnings. they should really be offset_t, but we're scared to use that
because no one else does.


Index: jbig2_priv.h
===================================================================
RCS file: /cvsroot/jbig2dec/jbig2dec/jbig2_priv.h,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -r1.15 -r1.16
--- jbig2_priv.h	9 Jul 2002 10:39:08 -0000	1.15
+++ jbig2_priv.h	5 Aug 2002 22:47:53 -0000	1.16
@@ -45,8 +45,8 @@
 
   byte *buf;
   size_t buf_size;
-  int buf_rd_ix;
-  int buf_wr_ix;
+  unsigned int buf_rd_ix;
+  unsigned int buf_wr_ix;
 
   Jbig2FileState state;