From 9352bc51ad89424a299ef67def1fb20436682a85 Mon Sep 17 00:00:00 2001 From: Adam Dickmeiss Date: Mon, 3 Jan 2005 11:02:42 +0000 Subject: [PATCH] Fixed bug #246 --- isamb/isamb.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/isamb/isamb.c b/isamb/isamb.c index b09ea62..91cedb0 100644 --- a/isamb/isamb.c +++ b/isamb/isamb.c @@ -1,4 +1,4 @@ -/* $Id: isamb.c,v 1.64 2005-01-02 23:24:07 adam Exp $ +/* $Id: isamb.c,v 1.65 2005-01-03 11:02:42 adam Exp $ Copyright (C) 1995-2005 Index Data Aps @@ -492,7 +492,7 @@ struct ISAMB_block *new_block (ISAMB b, int leaf, int cat) } yaz_log (b->log_freelist, "got block " ZINT_FORMAT " from freelist %d:" ZINT_FORMAT, p->pos, cat, p->pos/CAT_MAX); - memcpy (&b->file[cat].head.free_list, p->buf, sizeof(int)); + memcpy (&b->file[cat].head.free_list, p->buf, sizeof(zint)); } p->cat = cat; b->file[cat].head_dirty = 1; @@ -559,7 +559,7 @@ void close_block (ISAMB b, struct ISAMB_block *p) { yaz_log (b->log_freelist, "release block " ZINT_FORMAT " from freelist %d:" ZINT_FORMAT, p->pos, p->cat, p->pos/CAT_MAX); - memcpy (p->buf, &b->file[p->cat].head.free_list, sizeof(int)); + memcpy (p->buf, &b->file[p->cat].head.free_list, sizeof(zint)); b->file[p->cat].head.free_list = p->pos; if (!get_block (b, p->pos, p->buf, 1)) { -- 1.7.10.4