Changeset 15546 in webkit for trunk/JavaScriptCore


Ignore:
Timestamp:
Jul 20, 2006, 2:52:37 PM (19 years ago)
Author:
sfalken
Message:

2006-07-20 Steve Falkenburg <[email protected]>

Fix the build

  • kjs/function.cpp: (KJS::escapeStringForPrettyPrinting):
Location:
trunk/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/ChangeLog

    r15526 r15546  
     12006-07-20  Steve Falkenburg  <[email protected]>
     2
     3        Fix the build
     4
     5        * kjs/function.cpp:
     6        (KJS::escapeStringForPrettyPrinting):
     7
    182006-07-19  Anders Carlsson  <[email protected]>
    29
  • trunk/JavaScriptCore/kjs/function.cpp

    r15526 r15546  
    948948                char hexValue[7];
    949949           
     950#if PLATFORM(WIN_OS)
     951                _snprintf(hexValue, 7, "\\u%04x", c);
     952#else
    950953                snprintf(hexValue, 7, "\\u%04x", c);
     954#endif
    951955                escapedString += hexValue;
    952956            }
Note: See TracChangeset for help on using the changeset viewer.