From ff239404c4969d04388c7af260c5c7c11e82fd67 Mon Sep 17 00:00:00 2001 From: Adam Dickmeiss Date: Wed, 26 Mar 2003 00:02:05 +0000 Subject: [PATCH] Missing return value --- index/zebraapi.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/index/zebraapi.c b/index/zebraapi.c index 1ebc60d..2a43bc9 100644 --- a/index/zebraapi.c +++ b/index/zebraapi.c @@ -1,4 +1,4 @@ -/* $Id: zebraapi.c,v 1.94 2003-03-25 19:56:01 adam Exp $ +/* $Id: zebraapi.c,v 1.95 2003-03-26 00:02:05 adam Exp $ Copyright (C) 1995,1996,1997,1998,1999,2000,2001,2002,2003 Index Data Aps @@ -1452,12 +1452,12 @@ static int zebra_commit_ex (ZebraHandle zh, int clean_only) int zebra_clean (ZebraHandle zh) { - zebra_commit_ex(zh, 1); + return zebra_commit_ex(zh, 1); } int zebra_commit (ZebraHandle zh) { - zebra_commit_ex(zh, 0); + return zebra_commit_ex(zh, 0); } int zebra_init (ZebraHandle zh) -- 1.7.10.4