summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-09-08 08:46:53 +0000
committerusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-09-08 08:46:53 +0000
commit9ae4b8bbfe4b10165a646724b2701a8d5f07cb62 (patch)
tree824dcc86ae37d00f32bd8d3c26dff35bf51ac829
parentbe2c236ffff51cae13acf27d5e14dffe757b2625 (diff)
* win32/win32.c (filetime_to_unixtime): remove unused variable.
[ruby-dev:36191] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19239 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog5
-rw-r--r--win32/win32.c1
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index d0f6f6b7c7..c3f9e000e2 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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 5ba7557ed0..7c802aba6b 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)