summaryrefslogtreecommitdiffstats
path: root/enc
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-09-06 04:43:39 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-09-06 04:43:39 +0000
commit6ef07a84628208d68df47c8a9606e3ee241c724e (patch)
tree6136078cea6e30e6ca52d906ccb91c9274575e78 /enc
parent4d55018c5e924e9489a839b1b9a8d6e6bff554b6 (diff)
downloadruby-6ef07a84628208d68df47c8a9606e3ee241c724e.tar.gz
ruby-6ef07a84628208d68df47c8a9606e3ee241c724e.tar.xz
ruby-6ef07a84628208d68df47c8a9606e3ee241c724e.zip
* 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
Diffstat (limited to 'enc')
-rw-r--r--enc/trans/escape.trans2
1 files changed, 1 insertions, 1 deletions
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;