From 6ef07a84628208d68df47c8a9606e3ee241c724e Mon Sep 17 00:00:00 2001 From: akr Date: Sat, 6 Sep 2008 04:43:39 +0000 Subject: * enc/trans/escape.trans (fun_so_escape_html_attr): fix return type. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@19177 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 4 ++++ enc/trans/escape.trans | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 0bb67e8e5..3759375ef 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 544e1ace4..b2aefbb19 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; -- cgit