aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--enc/trans/escape.trans2
2 files changed, 5 insertions, 1 deletions
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 <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.
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;