Changeset 2067 for trunk


Ignore:
Timestamp:
Jun 23, 2005, 8:04:31 AM (20 years ago)
Author:
bird
Message:

Corrected really bad struct member mixup.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/emx/src/lib/sys/__ftime.c

    • Property cvs2svn:cvs-rev changed from 1.8 to 1.9
    r2066 r2067  
    120120            ULONG       time;
    121121            ULONG       msecs;
    122             UCHAR       hour;
    123             UCHAR       minutes;
    124             UCHAR       seconds;
     122            UCHAR       _not_used__hour;
     123            UCHAR       _not_used__minutes;
     124            UCHAR       _not_used__seconds;
    125125            UCHAR       hundredths;
    126126        } s;
     
    155155    /* calc now */
    156156    union last Now;
    157     Now.s.secs = Combined.s.seconds;
     157    Now.s.secs = Combined.s.time;
    158158#ifdef CALCDIFF
    159159    Now.s.milli = (Combined.s.msecs + uDiff) % 1000;
Note: See TracChangeset for help on using the changeset viewer.