mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* ext/syck/node.c (syck_replace_str): was using return from the
void function. a patch from MIYAMUKO Katsuyuki <miyamuko@mtb.biglobe.ne.jp>. [ruby-dev:27111] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9180 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
56d82da97c
commit
38aeed1f94
2 changed files with 7 additions and 1 deletions
|
@ -1,3 +1,9 @@
|
|||
Fri Sep 16 18:34:01 2005 Yukihiro Matsumoto <matz@ruby-lang.org>
|
||||
|
||||
* ext/syck/node.c (syck_replace_str): was using return from the
|
||||
void function. a patch from MIYAMUKO Katsuyuki
|
||||
<miyamuko@mtb.biglobe.ne.jp>. [ruby-dev:27111]
|
||||
|
||||
Fri Sep 16 14:48:48 2005 Hidetoshi NAGAI <nagai@ai.kyutech.ac.jp>
|
||||
|
||||
* ext/tk/lib/multi-tk.rb: fix typo on MultiTkIp#bg_eval_string
|
||||
|
|
|
@ -123,7 +123,7 @@ syck_new_str2( char *str, long len, enum scalar_style style )
|
|||
void
|
||||
syck_replace_str( SyckNode *n, char *str, enum scalar_style style )
|
||||
{
|
||||
return syck_replace_str2( n, str, strlen( str ), style );
|
||||
syck_replace_str2( n, str, strlen( str ), style );
|
||||
}
|
||||
|
||||
void
|
||||
|
|
Loading…
Reference in a new issue