Changeset 17908


Ignore:
Timestamp:
Nov 15, 2001, 6:24:54 PM (23 years ago)
Author:
phaller
Message:

Fixed stupid WINE typo in VariantTimeToDosDate

File:
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified tags/trunk/src/oleaut32/variant.c

    r17512 r17908  
    43624362INT WINAPI VariantTimeToDosDateTime(DATE pvtime, USHORT *wDosDate, USHORT *wDosTime)
    43634363{
    4364     struct tm t;
     4364  struct tm t;
     4365 
     4366#ifdef __WIN32OS2__
     4367    *wDosTime = 0;
     4368    *wDosDate = 0;
     4369#else
     4370  // PH 2001-11-15: this is definately gonna crash!
    43654371    wDosTime = 0;
    43664372    wDosDate = 0;
     4373#endif
    43674374
    43684375    TRACE("( 0x%x, 0x%x, 0x%p ), stub\n", *wDosDate, *wDosTime, &pvtime );
Note: See TracChangeset for help on using the changeset viewer.