summaryrefslogtreecommitdiff
path: root/ext/date/date_parse.c
diff options
context:
space:
mode:
authornaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-04-23 17:34:55 +0000
committernaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-04-23 17:34:55 +0000
commitc34db589139980914f0b05d27b2499ac5bec615a (patch)
tree35dca0b96c3e330eb7ef06c83ed2f7703c4e6d37 /ext/date/date_parse.c
parent5c0a69a6211c76d0e34be9adb24e89ee539f4cba (diff)
* ext/date/date_core.c (leap_p): surpress warning: parentheses.
* ext/date/date_core.c (date_s__parse_internal): remove unused variable "str". * ext/date/date_parse.c (parse_ddd_cb): use RSTRING_LENINT. * ext/date/date_strftime.c (date_strftime_with_tmx): remove unused variable. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@31326 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/date/date_parse.c')
-rw-r--r--ext/date/date_parse.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/ext/date/date_parse.c b/ext/date/date_parse.c
index fd1dd654d0..452709309f 100644
--- a/ext/date/date_parse.c
+++ b/ext/date/date_parse.c
@@ -918,7 +918,7 @@ parse_ddd_cb(VALUE m, VALUE hash)
{
VALUE s1, s2, s3, s4, s5;
const char *cs2, *cs3, *cs5;
- long l2, l3, l4, l5;
+ int l2, l3, l4, l5;
s1 = f_aref(m, INT2FIX(1));
s2 = f_aref(m, INT2FIX(2));
@@ -927,7 +927,7 @@ parse_ddd_cb(VALUE m, VALUE hash)
s5 = f_aref(m, INT2FIX(5));
cs2 = RSTRING_PTR(s2);
- l2 = RSTRING_LEN(s2);
+ l2 = RSTRING_LENINT(s2);
switch (l2) {
case 2:
@@ -1042,7 +1042,7 @@ parse_ddd_cb(VALUE m, VALUE hash)
}
if (!NIL_P(s3)) {
cs3 = RSTRING_PTR(s3);
- l3 = RSTRING_LEN(s3);
+ l3 = RSTRING_LENINT(s3);
if (!NIL_P(s4)) {
switch (l3) {
@@ -1072,7 +1072,7 @@ parse_ddd_cb(VALUE m, VALUE hash)
}
}
if (!NIL_P(s4)) {
- l4 = RSTRING_LEN(s4);
+ l4 = RSTRING_LENINT(s4);
set_hash("sec_fraction",
rb_rational_new2(str2num(s4),
@@ -1081,7 +1081,7 @@ parse_ddd_cb(VALUE m, VALUE hash)
if (!NIL_P(s5)) {
VALUE zone_to_diff(VALUE s);
cs5 = RSTRING_PTR(s5);
- l5 = RSTRING_LEN(s5);
+ l5 = RSTRING_LENINT(s5);
set_hash("zone", s5);