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):
File:
1 edited

Legend:

Unmodified
Added
Removed
  • 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.