Title: [126731] trunk/Source/WebCore
Revision
126731
Author
[email protected]
Date
2012-08-27 00:31:57 -0700 (Mon, 27 Aug 2012)

Log Message

[Qt] REGRESSION(r126694): It broke the debug build
https://bugs.webkit.org/show_bug.cgi?id=95037

Unreviewed trivial build fix for debug builds.

Don't pass WTFStrings through printf, use .ascii().data().

* platform/graphics/texmap/TextureMapperShaderManager.cpp:
(WebCore::StandardFilterProgram::StandardFilterProgram):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (126730 => 126731)


--- trunk/Source/WebCore/ChangeLog	2012-08-27 07:27:10 UTC (rev 126730)
+++ trunk/Source/WebCore/ChangeLog	2012-08-27 07:31:57 UTC (rev 126731)
@@ -1,3 +1,15 @@
+2012-08-27  Simon Hausmann  <[email protected]>
+
+        [Qt] REGRESSION(r126694): It broke the debug build
+        https://bugs.webkit.org/show_bug.cgi?id=95037
+
+        Unreviewed trivial build fix for debug builds.
+
+        Don't pass WTFStrings through printf, use .ascii().data().
+
+        * platform/graphics/texmap/TextureMapperShaderManager.cpp:
+        (WebCore::StandardFilterProgram::StandardFilterProgram):
+
 2012-08-26  Yoshifumi Inoue  <[email protected]>
 
         [Forms] Focus style of millisecond field in multiple fields time input UI is different from other fields

Modified: trunk/Source/WebCore/platform/graphics/texmap/TextureMapperShaderManager.cpp (126730 => 126731)


--- trunk/Source/WebCore/platform/graphics/texmap/TextureMapperShaderManager.cpp	2012-08-27 07:27:10 UTC (rev 126730)
+++ trunk/Source/WebCore/platform/graphics/texmap/TextureMapperShaderManager.cpp	2012-08-27 07:31:57 UTC (rev 126731)
@@ -607,7 +607,7 @@
 #if !LOG_DISABLED
     String log;
     m_context->getShaderInfoLog(fragmentShader);
-    WTFLog(&LogCompositing, "%s\n", log);
+    WTFLog(&LogCompositing, "%s\n", log.ascii().data());
 #endif
     m_context->attachShader(programID, vertexShader);
     m_context->attachShader(programID, fragmentShader);
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to