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:
96c6e58
)
Fixed bug #2116: Invalid: returning value from void func in wrbuf.c.
author
Adam Dickmeiss
<adam@indexdata.dk>
Fri, 4 Apr 2008 11:26:29 +0000
(13:26 +0200)
committer
Adam Dickmeiss
<adam@indexdata.dk>
Fri, 4 Apr 2008 11:26:29 +0000
(13:26 +0200)
src/wrbuf.c
patch
|
blob
|
history
diff --git
a/src/wrbuf.c
b/src/wrbuf.c
index
e80f98a
..
83b296b
100644
(file)
--- a/
src/wrbuf.c
+++ b/
src/wrbuf.c
@@
-245,7
+245,7
@@
void wrbuf_cut_right(WRBUF b, size_t no_to_remove)
void wrbuf_puts_escaped(WRBUF b, const char *str)
{
- return wrbuf_write_escaped(b, str, strlen(str));
+ wrbuf_write_escaped(b, str, strlen(str));
}
void wrbuf_write_escaped(WRBUF b, const char *str, size_t len)