aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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)