From 98c8e1cd91819042b13eb5aa69d86cb813a9bcaa Mon Sep 17 00:00:00 2001 From: akr Date: Sun, 8 Aug 2010 01:08:27 +0000 Subject: * strftime.c (rb_strftime_with_timespec): suppress warnings. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@28916 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 4 ++++ strftime.c | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 08a73d5ff7..18c58993e3 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Sun Aug 8 10:07:45 2010 Tanaka Akira + + * strftime.c (rb_strftime_with_timespec): suppress warnings. + Sun Aug 8 08:58:42 2010 Nobuyoshi Nakada * common.mk (RUBY_H_INCLUDES): add subst.h. diff --git a/strftime.c b/strftime.c index 3bdf7f6ecf..89f602179e 100644 --- a/strftime.c +++ b/strftime.c @@ -482,13 +482,13 @@ rb_strftime_with_timespec(char *s, size_t maxsize, const char *format, const str off = off % 3600; if (1 <= colons) *s++ = ':'; - i = snprintf(s, endp - s, "%02d", off / 60); + i = snprintf(s, endp - s, "%02d", (int)(off / 60)); if (i < 0) goto err; s += i; off = off % 60; if (2 <= colons) { *s++ = ':'; - i = snprintf(s, endp - s, "%02d", off); + i = snprintf(s, endp - s, "%02d", (int)off); if (i < 0) goto err; s += i; } -- cgit v1.2.3