X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=index%2Frank1.c;h=b4de2dde345fe688afe9a17198da4e852fad6b9f;hb=2e4e9c6def27f1e1463dcb6f205fab6a98054f38;hp=1c1c149b38da3dce4738ec23c6a1da78a440170e;hpb=367b31a1c65ab68ded2db67d9922bf4b36cd5453;p=idzebra-moved-to-github.git diff --git a/index/rank1.c b/index/rank1.c index 1c1c149..b4de2dd 100644 --- a/index/rank1.c +++ b/index/rank1.c @@ -1,4 +1,4 @@ -/* $Id: rank1.c,v 1.14 2003-03-26 16:57:24 adam Exp $ +/* $Id: rank1.c,v 1.15 2004-08-04 08:35:23 adam Exp $ Copyright (C) 1995,1996,1997,1998,1999,2000,2001,2002,2003 Index Data Aps @@ -168,7 +168,7 @@ static void add (void *set_handle, int seqno, int term_index) * score should be between 0 and 1000. If score cannot be obtained * -1 should be returned. */ -static int calc (void *set_handle, int sysno) +static int calc (void *set_handle, zint sysno) { int i, lo, divisor, score = 0; struct rank_set_info *si = (struct rank_set_info *) set_handle; @@ -192,7 +192,7 @@ static int calc (void *set_handle, int sysno) divisor = si->no_rank_entries * (8+log2_int (si->last_pos/si->no_entries)); score = score / divisor; #if DEBUG_RANK - yaz_log (LOG_LOG, "sysno=%d score=%d", sysno, score); + yaz_log (LOG_LOG, "sysno=" ZINT_FORMAT " score=%d", sysno, score); #endif if (score > 1000) score = 1000;