1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* enc/trans/escape.trans (fun_so_escape_html_attr): fix return type.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19177 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
akr 2008-09-06 04:43:39 +00:00
parent 27e9c48ccc
commit 9f687d7be9
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
Sat Sep 6 13:43:20 2008 Tanaka Akira <akr@fsij.org>
* enc/trans/escape.trans (fun_so_escape_html_attr): fix return type.
Sat Sep 6 12:43:55 2008 Tanaka Akira <akr@fsij.org>
* transcode.c (rb_econv_open): needless branch removed.

View file

@ -94,7 +94,7 @@ escape_html_attr_init(void *statep)
return 0;
}
static VALUE
static int
fun_so_escape_html_attr(void *statep, const unsigned char *s, size_t l, unsigned char *o)
{
unsigned char *sp = statep;