From: Adam Dickmeiss Date: Wed, 28 Aug 2002 19:33:53 +0000 (+0000) Subject: add missing return value X-Git-Tag: YAZ.1.9~27 X-Git-Url: http://sru.miketaylor.org.uk/cgi-bin?a=commitdiff_plain;h=941c141092dc2ea6a2b6f5cc7bac181798113ae7;p=yaz-moved-to-github.git add missing return value --- diff --git a/util/siconvtst.c b/util/siconvtst.c index 8852391..cbe4ec2 100644 --- a/util/siconvtst.c +++ b/util/siconvtst.c @@ -2,7 +2,7 @@ * Copyright (c) 1997-2002, Index Data * See the file LICENSE for details. * - * $Id: siconvtst.c,v 1.3 2002-08-27 21:45:28 adam Exp $ + * $Id: siconvtst.c,v 1.4 2002-08-28 19:33:53 adam Exp $ */ #if HAVE_CONFIG_H @@ -144,4 +144,5 @@ int main (int argc, char **argv) convert (inf, cd); yaz_iconv_close (cd); + return 0; }