Ignore:
Timestamp:
Jun 25, 2002, 7:54:00 PM (23 years ago)
Author:
sandervl
Message:

FileTimeToSystemTime fix

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/kernel32/time.cpp

    r8336 r8763  
    1 /* $Id: time.cpp,v 1.18 2002-04-30 09:21:33 sandervl Exp $ */
     1/* $Id: time.cpp,v 1.19 2002-06-25 17:54:00 sandervl Exp $ */
    22
    33/*
     
    123123BOOL WIN32API FileTimeToSystemTime(const FILETIME * arg1, LPSYSTEMTIME arg2)
    124124{
    125    /* Another WGSS bug it expects not UCT on input but LocalTime! */
    126    FILETIME dummy;
    127    FileTimeToLocalFileTime(arg1,&dummy);
    128    return O32_FileTimeToSystemTime(&dummy, arg2);
     125   return O32_FileTimeToSystemTime(&arg1, arg2);
    129126}
    130127//******************************************************************************
Note: See TracChangeset for help on using the changeset viewer.