1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* string.c (tr_trans, rb_str_squeeze_bang, rb_str_split_m): suppress

warnings.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13315 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2007-08-30 02:44:20 +00:00
parent c8b8b7438e
commit b58f080349

View file

@ -3185,7 +3185,7 @@ tr_trans(VALUE str, VALUE src, VALUE repl, int sflag)
rb_encoding *enc;
struct tr trsrc, trrepl;
int cflag = 0;
int c, last, modify = 0;
int c, last = 0, modify = 0;
char *s, *send;
VALUE hash;
@ -3500,7 +3500,7 @@ rb_str_delete(int argc, VALUE *argv, VALUE str)
static VALUE
rb_str_squeeze_bang(int argc, VALUE *argv, VALUE str)
{
rb_encoding *enc;
rb_encoding *enc = 0;
VALUE del = 0, nodel = 0;
char *s, *send, *t;
int save, modify = 0;
@ -3759,6 +3759,7 @@ rb_str_split_m(int argc, VALUE *argv, VALUE str)
int skip = 1;
int c;
end = beg;
while (ptr < eptr) {
c = rb_enc_codepoint(ptr, eptr, enc);
if (skip) {