Ignore:
Timestamp:
Oct 12, 2006, 1:19:32 PM (19 years ago)
Author:
kmccullo
Message:

Reviewed by Adam.

Build breakage fix

  • kjs/DateMath.cpp: (KJS::msToTM):
  • kjs/date_object.cpp: (KJS::gmtoffset):
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/kjs/DateMath.cpp

    r17010 r17015  
    427427    tm.tm_isdst =  dstOff != 0.0;
    428428
    429     tm.tm_gmtoff = (dstOff + getUTCOffset()) / usecPerMsec;
     429    tm.tm_gmtoff = static_cast<long>((dstOff + getUTCOffset()) / usecPerMsec);
    430430    tm.tm_zone = 0;
    431431}
Note: See TracChangeset for help on using the changeset viewer.