Fix the build
* kjs/function.cpp:
(KJS::escapeStringForPrettyPrinting):
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@15546
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2006-07-20 Steve Falkenburg <sfalken@apple.com>
+
+ Fix the build
+
+ * kjs/function.cpp:
+ (KJS::escapeStringForPrettyPrinting):
+
2006-07-19 Anders Carlsson <acarlsson@apple.com>
Reviewed by Darin.
else {
char hexValue[7];
+#if PLATFORM(WIN_OS)
+ _snprintf(hexValue, 7, "\\u%04x", c);
+#else
snprintf(hexValue, 7, "\\u%04x", c);
+#endif
escapedString += hexValue;
}
}