From: Adam Dickmeiss Date: Wed, 16 Nov 2005 04:33:11 +0000 (+0000) Subject: Fix grs.sgml to use off_t rather than int for file offsets X-Git-Tag: ZEBRA.1.3.34~22 X-Git-Url: http://jsfdemo.indexdata.com/?a=commitdiff_plain;h=44d7425a534089b15855f8c7fa7d263a0d98566b;p=idzebra-moved-to-github.git Fix grs.sgml to use off_t rather than int for file offsets --- diff --git a/recctrl/sgmlread.c b/recctrl/sgmlread.c index c22cd51..915ff61 100644 --- a/recctrl/sgmlread.c +++ b/recctrl/sgmlread.c @@ -1,4 +1,4 @@ -/* $Id: sgmlread.c,v 1.11 2002-08-02 19:26:56 adam Exp $ +/* $Id: sgmlread.c,v 1.11.2.1 2005-11-16 04:33:11 adam Exp $ Copyright (C) 1995,1996,1997,1998,1999,2000,2001,2002 Index Data Aps @@ -31,7 +31,7 @@ struct sgml_getc_info { int buf_size; int size; int off; - int moffset; + off_t moffset; void *fh; int (*readf)(void *, char *, size_t); WRBUF wrbuf;