Changeset 31048 in webkit for trunk/JavaScriptCore/pcre


Ignore:
Timestamp:
Mar 13, 2008, 8:43:55 PM (17 years ago)
Author:
[email protected]
Message:

Reviewed by eseidel. Landed by eseidel

  • pcre/pcre_exec.cpp: Fix misnamed variable, allowing -DDEBUG build to succeed.
  • wtf/ThreadingPthreads.cpp: #include <sys/time.h> for gettimeofday in non-pch build.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/pcre/pcre_exec.cpp

    r29121 r31048  
    20252025        if (returnCode != 1) {
    20262026            ASSERT(returnCode == JSRegExpErrorHitLimit || returnCode == JSRegExpErrorNoMemory);
    2027             DPRINTF((">>>> error: returning %d\n", rc));
     2027            DPRINTF((">>>> error: returning %d\n", returnCode));
    20282028            return returnCode;
    20292029        }
     
    20532053        }
    20542054       
    2055         DPRINTF((">>>> returning %d\n", rc));
     2055        DPRINTF((">>>> returning %d\n", returnCode));
    20562056        return returnCode;
    20572057    } while (startMatch <= endSubject);
Note: See TracChangeset for help on using the changeset viewer.