Ignore:
Timestamp:
Apr 6, 2014, 1:20:12 PM (11 years ago)
Author:
[email protected]
Message:

32-bit build fix.

  • runtime/JSGlobalObject.cpp:

(JSC::JSGlobalObject::setInputCursor):

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/runtime/JSGlobalObject.cpp

    r166792 r166852  
    819819    else if (cursor.isReplaying()) {
    820820        if (SetRandomSeed* input = cursor.fetchInput<SetRandomSeed>())
    821             m_weakRandom.initializeSeed(input->randomSeed());
     821            m_weakRandom.initializeSeed(static_cast<unsigned>(input->randomSeed()));
    822822    }
    823823}
Note: See TracChangeset for help on using the changeset viewer.