summaryrefslogtreecommitdiff
path: root/ext/zlib/zlib.c
diff options
context:
space:
mode:
authorusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-06-21 08:32:22 +0000
committerusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-06-21 08:32:22 +0000
commitbc6a1d8dcfae8b3cdc85fd1f7e6ba66a88a2a867 (patch)
treef306b27a4dc8690800157d3bb45e310250c4dd0d /ext/zlib/zlib.c
parent7dd70df4b014f4bd87e02641c60ecdd929b2797b (diff)
* ext/socket/getaddrinfo.c (freeaddrinfo, get_name): fixed typo.
* ext/tk/tcltklib.c (tcl_eval, tcl_global_eva): ditto. * ext/zlib/zlib.c (rscheck): constified. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10358 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/zlib/zlib.c')
-rw-r--r--ext/zlib/zlib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/zlib/zlib.c b/ext/zlib/zlib.c
index c54e83eac0..68d947d052 100644
--- a/ext/zlib/zlib.c
+++ b/ext/zlib/zlib.c
@@ -2983,7 +2983,7 @@ gzreader_skip_linebreaks(struct gzfile *gz)
}
static void
-rscheck(char *rsptr, long rslen, VALUE rs)
+rscheck(const char *rsptr, long rslen, VALUE rs)
{
if (RSTRING(rs)->ptr != rsptr && RSTRING(rs)->len != rslen)
rb_raise(rb_eRuntimeError, "rs modified");