diff options
| author | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-09-08 08:46:53 +0000 |
|---|---|---|
| committer | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-09-08 08:46:53 +0000 |
| commit | 652f8091a0483a1267fa5fcc0fa010d98c845e02 (patch) | |
| tree | 824dcc86ae37d00f32bd8d3c26dff35bf51ac829 | |
| parent | c979cc3e365d2d9a28acd5bbf20c29ca700f594e (diff) | |
| download | ruby-652f8091a0483a1267fa5fcc0fa010d98c845e02.tar.gz ruby-652f8091a0483a1267fa5fcc0fa010d98c845e02.tar.xz ruby-652f8091a0483a1267fa5fcc0fa010d98c845e02.zip | |
* win32/win32.c (filetime_to_unixtime): remove unused variable.
[ruby-dev:36191]
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@19239 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 5 | ||||
| -rw-r--r-- | win32/win32.c | 1 |
2 files changed, 5 insertions, 1 deletions
@@ -1,3 +1,8 @@ +Mon Sep 8 17:46:09 2008 NAKAMURA Usaku <usa@ruby-lang.org> + + * win32/win32.c (filetime_to_unixtime): remove unused variable. + [ruby-dev:36191] + Mon Sep 8 13:47:39 2008 Kazuhiro NISHIYAMA <zn@mbf.nifty.com> * test/ruby/test_io.rb (TestIO#test_dup): add open in block. diff --git a/win32/win32.c b/win32/win32.c index 5ba7557ed..7c802aba6 100644 --- a/win32/win32.c +++ b/win32/win32.c @@ -3440,7 +3440,6 @@ rb_w32_fstati64(int fd, struct stati64 *st) static time_t filetime_to_unixtime(const FILETIME *ft) { - FILETIME loc; struct timeval tv; if (filetime_to_timeval(ft, &tv) == (time_t)-1) |
