X-Git-Url: http://jsfdemo.indexdata.com/?a=blobdiff_plain;f=index%2Frecindex.c;h=69ed2d18d598eb3d846633f111b4915f865317c5;hb=deff57cfa9d9b39c4a4f1c9b82a64c6e61d821a4;hp=e12fc19148b6adb08656c53a1574a97f546bf4df;hpb=5437b50633032595afe6f87dc0f989bc92a5aea8;p=idzebra-moved-to-github.git diff --git a/index/recindex.c b/index/recindex.c index e12fc19..69ed2d1 100644 --- a/index/recindex.c +++ b/index/recindex.c @@ -1,6 +1,6 @@ -/* $Id: recindex.c,v 1.39 2004-11-19 10:27:03 heikki Exp $ - Copyright (C) 1995,1996,1997,1998,1999,2000,2001,2002,2003,2004 - Index Data Aps +/* $Id: recindex.c,v 1.42 2005-01-16 23:14:57 adam Exp $ + Copyright (C) 1995-2005 + Index Data ApS This file is part of the Zebra server. @@ -38,6 +38,7 @@ Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA * length = 0 if same as previous */ #include +#include #include #include @@ -67,7 +68,8 @@ static void rec_tmp_expand (Records p, int size) p->tmp_size < p->head.block_size[REC_BLOCK_TYPES-1]*2) { xfree (p->tmp_buf); - p->tmp_size = size + p->head.block_size[REC_BLOCK_TYPES-1]*2 + 2048; + p->tmp_size = size + (int) + (p->head.block_size[REC_BLOCK_TYPES-1])*2 + 2048; p->tmp_buf = (char *) xmalloc (p->tmp_size); } } @@ -85,7 +87,8 @@ static int read_indx (Records p, SYSNO sysno, void *buf, int itemsize, r = bf_read (p->index_BFile, 1+pos/RIDX_CHUNK, off, sz1, buf); if (r == 1 && sz1 < itemsize) /* boundary? - must read second part */ - r = bf_read (p->index_BFile, 2+pos/RIDX_CHUNK, 0, itemsize - sz1, buf + sz1); + r = bf_read (p->index_BFile, 2+pos/RIDX_CHUNK, 0, itemsize - sz1, + (char*) buf + sz1); if (r != 1 && !ignoreError) { yaz_log (YLOG_FATAL|YLOG_ERRNO, "read in %s at pos %ld", @@ -106,7 +109,8 @@ static void write_indx (Records p, SYSNO sysno, void *buf, int itemsize) bf_write(p->index_BFile, 1+pos/RIDX_CHUNK, off, sz1, buf); if (sz1 < itemsize) /* boundary? must write second part */ - bf_write(p->index_BFile, 2+pos/RIDX_CHUNK, 0, itemsize - sz1, buf + sz1); + bf_write(p->index_BFile, 2+pos/RIDX_CHUNK, 0, itemsize - sz1, + (char*) buf + sz1); } static void rec_release_blocks (Records p, SYSNO sysno) @@ -225,7 +229,7 @@ static void rec_write_tmp_buf (Records p, int size, SYSNO *sysnos) cptr = p->tmp_buf + no_written; } block_prev = block_free; - no_written += p->head.block_size[dst_type] - sizeof(zint); + no_written += (int)(p->head.block_size[dst_type]) - sizeof(zint); p->head.block_used[dst_type]++; } assert (block_prev != -1); @@ -306,7 +310,7 @@ Records rec_open (BFiles bfs, int rw, int compression_method) for (i = 0; idata_BFile[i] = bf_open (bfs, p->data_fname[i], - p->head.block_size[i], + (int) (p->head.block_size[i]), rw))) { yaz_log (YLOG_FATAL|YLOG_ERRNO, "bf_open %s", p->data_fname[i]);