diff options
| -rw-r--r-- | ChangeLog | 4 | ||||
| -rw-r--r-- | file.c | 2 | ||||
| -rw-r--r-- | version.h | 6 |
3 files changed, 8 insertions, 4 deletions
@@ -1,3 +1,7 @@ +Tue May 20 13:15:46 2008 Akinori MUSHA <knu@iDaemons.org> + + * file.c (lchmod_internal): Remove a compiler warning. + Mon May 19 18:22:35 2008 Akinori MUSHA <knu@iDaemons.org> * ext/openssl/ossl_pkcs5.c (ossl_pkcs5_pbkdf2_hmac): Fix the type @@ -1785,7 +1785,7 @@ lchmod_internal(path, mode) const char *path; void *mode; { - if (lchmod(path, (int)mode) < 0) + if (lchmod(path, (int)(VALUE)mode) < 0) rb_sys_fail(path); } @@ -1,7 +1,7 @@ #define RUBY_VERSION "1.8.7" -#define RUBY_RELEASE_DATE "2008-05-19" +#define RUBY_RELEASE_DATE "2008-05-20" #define RUBY_VERSION_CODE 187 -#define RUBY_RELEASE_CODE 20080519 +#define RUBY_RELEASE_CODE 20080520 #define RUBY_PATCHLEVEL 5000 #define RUBY_VERSION_MAJOR 1 @@ -9,7 +9,7 @@ #define RUBY_VERSION_TEENY 7 #define RUBY_RELEASE_YEAR 2008 #define RUBY_RELEASE_MONTH 5 -#define RUBY_RELEASE_DAY 19 +#define RUBY_RELEASE_DAY 20 #ifdef RUBY_EXTERN RUBY_EXTERN const char ruby_version[]; |
