projects
/
yaz-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:
a5c369a
)
dont return value in void
author
Adam Dickmeiss
<adam@indexdata.dk>
Tue, 4 Jun 2002 08:33:49 +0000
(08:33 +0000)
committer
Adam Dickmeiss
<adam@indexdata.dk>
Tue, 4 Jun 2002 08:33:49 +0000
(08:33 +0000)
zoom/zoom-opt.c
patch
|
blob
|
history
diff --git
a/zoom/zoom-opt.c
b/zoom/zoom-opt.c
index
309e8cf
..
19d1e49
100644
(file)
--- a/
zoom/zoom-opt.c
+++ b/
zoom/zoom-opt.c
@@
-1,5
+1,5
@@
/*
- * $Id: zoom-opt.c,v 1.6 2002-06-02 21:27:17 adam Exp $
+ * $Id: zoom-opt.c,v 1.7 2002-06-04 08:33:49 adam Exp $
*
* ZOOM layer for C, options handling
*/
@@
-124,7
+124,7
@@
ZOOM_options_setl (ZOOM_options opt, const char *name, const char *value,
ZOOM_API(void)
ZOOM_options_set (ZOOM_options opt, const char *name, const char *value)
{
- return ZOOM_options_setl (opt, name, value, value ? strlen(value): 0);
+ ZOOM_options_setl (opt, name, value, value ? strlen(value): 0);
}
ZOOM_API(const char *)