From 0ad2ccc469f9a06aa330f27f6810140ae33e76ec Mon Sep 17 00:00:00 2001 From: Adam Dickmeiss Date: Mon, 9 May 2005 12:03:59 +0000 Subject: [PATCH] Avoid mix vardecl/stmt --- test/api/testlib.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/test/api/testlib.c b/test/api/testlib.c index 7b7efca..e960d0d 100644 --- a/test/api/testlib.c +++ b/test/api/testlib.c @@ -1,4 +1,4 @@ -/* $Id: testlib.c,v 1.18 2005-05-04 10:50:09 adam Exp $ +/* $Id: testlib.c,v 1.19 2005-05-09 12:03:59 adam Exp $ Copyright (C) 1995-2005 Index Data ApS @@ -163,13 +163,14 @@ int do_query_x(int lineno, ZebraHandle zh, const char *query, zint exphits, rc = zebra_search_RPN(zh, odr, rpn, setname, &hits); if (experror) { + int code; if (rc != ZEBRA_FAIL) { printf("Error: search returned %d (OK), but error was expected\n" "%s\n", rc, query); exit(1); } - int code = zebra_errCode(zh); + code = zebra_errCode(zh); if (code != experror) { printf("Error: search returned error code %d, but error %d was " -- 1.7.10.4