From: Adam Dickmeiss Date: Tue, 13 Sep 2005 13:15:24 +0000 (+0000) Subject: Missing to res_open X-Git-Tag: before.bug.529~322 X-Git-Url: http://git.indexdata.com/?p=idzebra-moved-to-github.git;a=commitdiff_plain;h=6c3da5ae754ebcd91827f61f1d402129fe379093 Missing to res_open --- diff --git a/test/api/t13.c b/test/api/t13.c index 360ba73..d390122 100644 --- a/test/api/t13.c +++ b/test/api/t13.c @@ -1,4 +1,4 @@ -/* $Id: t13.c,v 1.2 2005-09-13 11:51:07 adam Exp $ +/* $Id: t13.c,v 1.3 2005-09-13 13:15:24 adam Exp $ Copyright (C) 1995-2005 Index Data ApS @@ -34,12 +34,12 @@ void tst() const char *val; int i; - default_res = res_open(0, 0, 0); /* completely empty */ + default_res = res_open(0, 0); /* completely empty */ if (!default_res) exit(1); res_set(default_res, "name1", "value1"); - temp_res = res_open(0, 0, 0); /* completely empty */ + temp_res = res_open(0, 0); /* completely empty */ if (!temp_res) exit(1);