From: Adam Dickmeiss Date: Wed, 6 Sep 2006 15:21:26 +0000 (+0000) Subject: Dont return value in void function X-Git-Tag: YAZ.2.1.30~15 X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=commitdiff_plain;h=9a92128c0862d044e09458f56ec165aadbf4a051;ds=sidebyside Dont return value in void function --- diff --git a/src/srwutil.c b/src/srwutil.c index 943653e..9c21af5 100644 --- a/src/srwutil.c +++ b/src/srwutil.c @@ -2,7 +2,7 @@ * Copyright (C) 1995-2006, Index Data ApS * See the file LICENSE for details. * - * $Id: srwutil.c,v 1.49 2006-09-06 13:37:51 adam Exp $ + * $Id: srwutil.c,v 1.50 2006-09-06 15:21:26 adam Exp $ */ /** * \file srwutil.c @@ -80,7 +80,7 @@ static void yaz_array_to_uri_ex(char **path, ODR o, char **name, char **value, void yaz_array_to_uri(char **path, ODR o, char **name, char **value) { - return yaz_array_to_uri_ex(path, o, name, value, 0); + yaz_array_to_uri_ex(path, o, name, value, 0); } int yaz_uri_array(const char *path, ODR o, char ***name, char ***val)