Changeset 37331 in webkit for trunk/JavaScriptCore/kjs


Ignore:
Timestamp:
Oct 6, 2008, 10:00:48 AM (17 years ago)
Author:
Simon Hausmann
Message:

2008-10-06 Ariya Hidayat <[email protected]>

Reviewed by Simon.

Build fix for MinGW.

  • platform/win/SystemTimeWin.cpp:
  • plugins/win/PluginViewWin.cpp: (WebCore::PluginView::invalidateRect):

2008-10-06 Ariya Hidayat <[email protected]>

Reviewed by Simon.

Build fix for MinGW.

File:
1 edited

Legend:

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

    r36578 r37331  
    314314            tickCountElapsed = (tickCount - tickCountLast);
    315315        else {
     316#if COMPILER(MINGW)
     317            __int64 tickCountLarge = tickCount + 0x100000000ULL;
     318#else
    316319            __int64 tickCountLarge = tickCount + 0x100000000I64;
     320#endif
    317321            tickCountElapsed = tickCountLarge - tickCountLast;
    318322        }
Note: See TracChangeset for help on using the changeset viewer.