Ignore:
Timestamp:
Mar 5, 2010, 8:32:13 PM (15 years ago)
Author:
Dmitry A. Kuminov
Message:

3rdparty: JavaScriptCore: Removed annoying warnings.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/3rdparty/javascriptcore/JavaScriptCore/interpreter/RegisterFile.h

    r592 r639  
    193193        APIRET arc = DosAllocMem(reinterpret_cast<PPVOID>(&m_buffer), roundUpAllocationSize(bufferLength, commitSize), PAG_READ | PAG_WRITE);
    194194        if (arc != NO_ERROR) {
    195             fprintf(stderr, "Could not allocate register file: %d\n", arc);
     195            fprintf(stderr, "Could not allocate register file: %d\n", arc);
    196196            CRASH();
    197197        }
     
    199199        arc = DosSetMem(m_buffer, committedSize, PAG_COMMIT | PAG_DEFAULT);
    200200        if (arc != NO_ERROR) {
    201             fprintf(stderr, "Could not allocate register file: %d\n", arc);
     201            fprintf(stderr, "Could not allocate register file: %d\n", arc);
    202202            CRASH();
    203203        }
     
    265265            APIRET arc = DosSetMem(m_commitEnd, size, PAG_COMMIT | PAG_DEFAULT);
    266266            if (arc != NO_ERROR) {
    267                 fprintf(stderr, "Could not allocate register file: %d\n", arc);
     267                fprintf(stderr, "Could not allocate register file: %d\n", arc);
    268268                CRASH();
    269269            }
Note: See TracChangeset for help on using the changeset viewer.