summaryrefslogtreecommitdiffstats
path: root/ext/stringio/stringio.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-04-30 04:11:33 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-04-30 04:11:33 +0000
commitcd5811e08202e793a152b72e00e553165650e04a (patch)
treefc148a382afbb0502c34e2be36068108b542cab3 /ext/stringio/stringio.c
parent4568a0dbb43b5b13ce9f67e432b1a9635c3b9af8 (diff)
downloadruby-cd5811e08202e793a152b72e00e553165650e04a.tar.gz
ruby-cd5811e08202e793a152b72e00e553165650e04a.tar.xz
ruby-cd5811e08202e793a152b72e00e553165650e04a.zip
* ext/stringio/stringio.c (strio_getline): suppress warnings.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@8396 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/stringio/stringio.c')
-rw-r--r--ext/stringio/stringio.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/ext/stringio/stringio.c b/ext/stringio/stringio.c
index 3ec73a62c..776e5231b 100644
--- a/ext/stringio/stringio.c
+++ b/ext/stringio/stringio.c
@@ -872,8 +872,7 @@ strio_getline(argc, argv, ptr)
}
}
s = p;
- while (p = memchr(p, '\n', e - p)) {
- if (p == e) break;
+ while ((p = memchr(p, '\n', e - p)) && (p != e)) {
if (*++p == '\n') {
e = p;
break;
@@ -882,7 +881,7 @@ strio_getline(argc, argv, ptr)
str = rb_str_substr(ptr->string, s - RSTRING(ptr->string)->ptr, e - s);
}
else if (n == 1) {
- if (p = memchr(s, RSTRING(str)->ptr[0], e - s)) {
+ if ((p = memchr(s, RSTRING(str)->ptr[0], e - s)) != 0) {
e = p + 1;
}
str = rb_str_substr(ptr->string, ptr->pos, e - s);