From: Adam Dickmeiss Date: Thu, 19 Aug 2004 12:39:29 +0000 (+0000) Subject: Dont return value in void func X-Git-Tag: ZEBRA.1.3.18~6 X-Git-Url: http://sru.miketaylor.org.uk/?a=commitdiff_plain;h=88c899d37993252423071461ad23a381e442c218;p=idzebra-moved-to-github.git Dont return value in void func --- diff --git a/isamb/isamb.c b/isamb/isamb.c index 8616a9e..6d8fe2b 100644 --- a/isamb/isamb.c +++ b/isamb/isamb.c @@ -1,4 +1,4 @@ -/* $Id: isamb.c,v 1.47.2.1 2004-08-18 19:58:12 adam Exp $ +/* $Id: isamb.c,v 1.47.2.2 2004-08-19 12:39:29 adam Exp $ Copyright (C) 1995,1996,1997,1998,1999,2000,2001,2002,2003,2004 Index Data Aps @@ -1061,7 +1061,7 @@ static void isamb_dump_r (ISAMB b, ISAMB_P pos, void (*pr)(const char *str), void isamb_dump (ISAMB b, ISAMB_P pos, void (*pr)(const char *str)) { - return isamb_dump_r(b, pos, pr, 0); + isamb_dump_r(b, pos, pr, 0); } #if 0