Title: [195774] trunk/Source/WebCore
Revision
195774
Author
[email protected]
Date
2016-01-28 12:13:27 -0800 (Thu, 28 Jan 2016)

Log Message

Windows build fix; PRId64 formatting macro for int64_t undefined, so provide Windows-specific alternative.

* platform/network/ParsedContentRange.cpp:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (195773 => 195774)


--- trunk/Source/WebCore/ChangeLog	2016-01-28 20:13:20 UTC (rev 195773)
+++ trunk/Source/WebCore/ChangeLog	2016-01-28 20:13:27 UTC (rev 195774)
@@ -1,3 +1,9 @@
+2016-01-28  Jer Noble  <[email protected]>
+
+        Windows build fix; PRId64 formatting macro for int64_t undefined, so provide Windows-specific alternative.
+
+        * platform/network/ParsedContentRange.cpp:
+
 2016-01-28  ChangSeok Oh  <[email protected]>
 
         [ThreadedCompositor] Fix flickers happening on video when entering/leaving fullscreen.

Modified: trunk/Source/WebCore/platform/network/ParsedContentRange.cpp (195773 => 195774)


--- trunk/Source/WebCore/platform/network/ParsedContentRange.cpp	2016-01-28 20:13:20 UTC (rev 195773)
+++ trunk/Source/WebCore/platform/network/ParsedContentRange.cpp	2016-01-28 20:13:27 UTC (rev 195774)
@@ -121,6 +121,10 @@
     m_isValid = areContentRangeValuesValid(m_firstBytePosition, m_lastBytePosition, m_instanceLength);
 }
 
+#if OS(WINDOWS) && !defined(PRId64)
+#define #define PRId64 "I64d"
+#endif
+
 String ParsedContentRange::headerValue() const
 {
     if (!m_isValid)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to