Several updates for the changes of hit count datatype from int
[idzebra-moved-to-github.git] / test / api / testlib.c
index 3029a7c..d54c7c1 100644 (file)
@@ -1,6 +1,6 @@
-/* $Id: testlib.c,v 1.9 2004-12-14 11:23:15 adam Exp $
-   Copyright (C) 1995,1996,1997,1998,1999,2000,2001,2002,2003,2004
-   Index Data Aps
+/* $Id: testlib.c,v 1.12 2005-03-09 12:14:42 adam Exp $
+   Copyright (C) 1995-2005
+   Index Data ApS
 
 This file is part of the Zebra server.
 
@@ -145,7 +145,7 @@ int do_query(int lineno, ZebraHandle zh, char *query, int exphits)
     YAZ_PQF_Parser parser;
     Z_RPNQuery *rpn;
     const char *setname="rsetname";
-    int hits;
+    zint hits;
     int rc;
         
 
@@ -166,7 +166,7 @@ int do_query(int lineno, ZebraHandle zh, char *query, int exphits)
     }
 
     if (hits != exphits) {
-        printf("Error: search returned %d hits instead of %d\n",
+        printf("Error: search returned " ZINT_FORMAT " hits instead of %d\n",
                 hits, exphits);
         exit (1);
     }
@@ -229,7 +229,6 @@ void meta_query(int lineno, ZebraHandle zh, char *query, int exphits,
     const char *setname="rsetname";
     zint *positions = (zint *) malloc(1 + (exphits * sizeof(zint)));
     int hits;
-    int rc;
     int i;
         
     hits = do_query(lineno, zh, query, exphits);
@@ -241,7 +240,7 @@ void meta_query(int lineno, ZebraHandle zh, char *query, int exphits,
     
     if (!meta)
     {
-        printf("Error: retrieve returned %d \n%s\n",rc,query);
+        printf("Error: retrieve returned error\n%s\n", query);
         exit (1);
     }