projects
/
idzebra-moved-to-github.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
01d68c3
)
Missing return value
author
Adam Dickmeiss
<adam@indexdata.dk>
Wed, 26 Mar 2003 00:02:05 +0000
(
00:02
+0000)
committer
Adam Dickmeiss
<adam@indexdata.dk>
Wed, 26 Mar 2003 00:02:05 +0000
(
00:02
+0000)
index/zebraapi.c
patch
|
blob
|
history
diff --git
a/index/zebraapi.c
b/index/zebraapi.c
index
1ebc60d
..
2a43bc9
100644
(file)
--- 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)