Changeset 31048 in webkit for trunk/JavaScriptCore


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.
Location:
trunk/JavaScriptCore
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/ChangeLog

    r31033 r31048  
     12008-03-13  Mark Mentovai  <[email protected]>
     2
     3        Reviewed by eseidel.  Landed by eseidel
     4
     5        * pcre/pcre_exec.cpp: Fix misnamed variable, allowing -DDEBUG build
     6        to succeed.
     7        * wtf/ThreadingPthreads.cpp: #include <sys/time.h> for gettimeofday
     8        in non-pch build.
     9
    1102008-03-13  Steve Falkenburg  <[email protected]>
    211
  • 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);
  • trunk/JavaScriptCore/wtf/ThreadingPthreads.cpp

    r30849 r31048  
    3333
    3434#include <errno.h>
    35 #include <time.h>
     35#include <sys/time.h>
    3636
    3737namespace WTF {
Note: See TracChangeset for help on using the changeset viewer.