From: Adam Dickmeiss Date: Tue, 3 May 2005 09:07:17 +0000 (+0000) Subject: Fixed a few printfs X-Git-Tag: snippet.version.1~48 X-Git-Url: http://sru.miketaylor.org.uk/cgi-bin?a=commitdiff_plain;h=a5b3cefa3cf58a5fe2de76b4f0e36210edc8f091;p=idzebra-moved-to-github.git Fixed a few printfs --- diff --git a/test/api/testlib.c b/test/api/testlib.c index 8a32b05..ba28301 100644 --- a/test/api/testlib.c +++ b/test/api/testlib.c @@ -1,4 +1,4 @@ -/* $Id: testlib.c,v 1.16 2005-05-02 09:05:22 adam Exp $ +/* $Id: testlib.c,v 1.17 2005-05-03 09:07:17 adam Exp $ Copyright (C) 1995-2005 Index Data ApS @@ -304,7 +304,7 @@ void ranking_query(int lineno, ZebraHandle zh, char *query, if (!strstr(retrievalRecord[0].buf, firstrec)) { printf("Error: Got the wrong record first\n"); - printf("Expected '%s' but got \n", firstrec); + printf("Expected '%s' but got\n", firstrec); printf("%.*s\n", retrievalRecord[0].len, retrievalRecord[0].buf); exit(1); } @@ -345,7 +345,7 @@ void meta_query(int lineno, ZebraHandle zh, char *query, int exphits, { if (meta[i].sysno != ids[i]) { - printf("Expected id=" ZINT_FORMAT " but got id=" ZINT_FORMAT, + printf("Expected id=" ZINT_FORMAT " but got id=" ZINT_FORMAT "\n", ids[i], meta[i].sysno); exit(1); }