From: Adam Dickmeiss Date: Thu, 23 Feb 2006 13:09:54 +0000 (+0000) Subject: Dont return value in void function X-Git-Tag: YAZ.2.1.14~20 X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=commitdiff_plain;h=a62320ec94a88d58e808511ed8ec4259974b4f95 Dont return value in void function --- diff --git a/src/xmlquery.c b/src/xmlquery.c index 3dd3007..9574be4 100644 --- a/src/xmlquery.c +++ b/src/xmlquery.c @@ -2,7 +2,7 @@ * Copyright (C) 1995-2005, Index Data ApS * All rights reserved. * - * $Id: xmlquery.c,v 1.5 2006-02-23 11:17:25 adam Exp $ + * $Id: xmlquery.c,v 1.6 2006-02-23 13:09:54 adam Exp $ */ /** @@ -787,7 +787,7 @@ static void yaz_xml2query_(const xmlNode *ptr, Z_Query **query, ODR odr, void yaz_xml2query(const void *xmlnodep, Z_Query **query, ODR odr, int *error_code, const char **addinfo) { - return yaz_xml2query_(xmlnodep, query, odr, error_code, addinfo); + yaz_xml2query_(xmlnodep, query, odr, error_code, addinfo); } /* HAVE_XML2 */