1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* 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
This commit is contained in:
usa 2008-09-08 08:46:53 +00:00
parent be2c236fff
commit 9ae4b8bbfe
2 changed files with 5 additions and 1 deletions

View file

@ -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.

View file

@ -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)