diff --git a/ChangeLog b/ChangeLog index 0bb67e8e58..3759375ef3 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Sat Sep 6 13:43:20 2008 Tanaka Akira + + * enc/trans/escape.trans (fun_so_escape_html_attr): fix return type. + Sat Sep 6 12:43:55 2008 Tanaka Akira * transcode.c (rb_econv_open): needless branch removed. diff --git a/enc/trans/escape.trans b/enc/trans/escape.trans index 544e1ace4a..b2aefbb19a 100644 --- a/enc/trans/escape.trans +++ b/enc/trans/escape.trans @@ -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;