From 1d76eefd3435e9a3fb330fd2ae3317b401183915 Mon Sep 17 00:00:00 2001 From: Adam Dickmeiss Date: Fri, 15 Sep 2006 10:44:34 +0000 Subject: [PATCH] Removed unused vars. Rephrase comment --- test/api/t11.c | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/test/api/t11.c b/test/api/t11.c index d0cc7c9..490af88 100644 --- a/test/api/t11.c +++ b/test/api/t11.c @@ -1,4 +1,4 @@ -/* $Id: t11.c,v 1.7 2006-08-31 08:36:53 adam Exp $ +/* $Id: t11.c,v 1.8 2006-09-15 10:44:34 adam Exp $ Copyright (C) 1995-2006 Index Data ApS @@ -39,22 +39,23 @@ static void tst(int argc, char **argv) YAZ_CHECK(tl_init_data(zh, myrec)); /* - int tl_scan(ZebraHandle zh, const char *query, + int tl_scan + ( + ZebraHandle zh, const char *query, int pos, int num, int exp_pos, int exp_num, int exp_partial, - const char **exp_entries) + const char **exp_entries + ) */ if (1) { /* bad string use attrite, bug #647 */ - const char *ent[] = { "a", 0 }; YAZ_CHECK(tl_scan(zh, "@attr 1=bad 0", 1, 1, 1, 1, 0, 0)); } if (1) { /* bad numeric use attributes, bug #647 */ - const char *ent[] = { "a", 0 }; YAZ_CHECK(tl_scan(zh, "@attr 1=1234 0", 1, 1, 1, 1, 0, 0)); } if (1) -- 1.7.10.4