From 88c899d37993252423071461ad23a381e442c218 Mon Sep 17 00:00:00 2001 From: Adam Dickmeiss Date: Thu, 19 Aug 2004 12:39:29 +0000 Subject: [PATCH] Dont return value in void func --- isamb/isamb.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 -- 1.7.10.4