Title: [123766] trunk/Source/WebKit2
Revision
123766
Author
commit-qu...@webkit.org
Date
2012-07-26 09:59:07 -0700 (Thu, 26 Jul 2012)

Log Message

[EFL][WK2] Compilation warning in EWK2UnitTestServer.cpp
https://bugs.webkit.org/show_bug.cgi?id=92387

Patch by Christophe Dumez <christophe.du...@intel.com> on 2012-07-26
Reviewed by Kenneth Rohde Christiansen.

Fix compilation warning in EWK2UnitTestServer.cpp.

* UIProcess/API/efl/tests/UnitTestUtils/EWK2UnitTestServer.cpp:
(EWK2UnitTestServer::EWK2UnitTestServer):

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (123765 => 123766)


--- trunk/Source/WebKit2/ChangeLog	2012-07-26 16:54:44 UTC (rev 123765)
+++ trunk/Source/WebKit2/ChangeLog	2012-07-26 16:59:07 UTC (rev 123766)
@@ -1,5 +1,17 @@
 2012-07-26  Christophe Dumez  <christophe.du...@intel.com>
 
+        [EFL][WK2] Compilation warning in EWK2UnitTestServer.cpp
+        https://bugs.webkit.org/show_bug.cgi?id=92387
+
+        Reviewed by Kenneth Rohde Christiansen.
+
+        Fix compilation warning in EWK2UnitTestServer.cpp.
+
+        * UIProcess/API/efl/tests/UnitTestUtils/EWK2UnitTestServer.cpp:
+        (EWK2UnitTestServer::EWK2UnitTestServer):
+
+2012-07-26  Christophe Dumez  <christophe.du...@intel.com>
+
         [EFL][WK2] Add unit tests for Ewk_Context
         https://bugs.webkit.org/show_bug.cgi?id=92005
 

Modified: trunk/Source/WebKit2/UIProcess/API/efl/tests/UnitTestUtils/EWK2UnitTestServer.cpp (123765 => 123766)


--- trunk/Source/WebKit2/UIProcess/API/efl/tests/UnitTestUtils/EWK2UnitTestServer.cpp	2012-07-26 16:54:44 UTC (rev 123765)
+++ trunk/Source/WebKit2/UIProcess/API/efl/tests/UnitTestUtils/EWK2UnitTestServer.cpp	2012-07-26 16:59:07 UTC (rev 123766)
@@ -26,7 +26,7 @@
     SoupAddress* address = soup_address_new("127.0.0.1", SOUP_ADDRESS_ANY_PORT);
     soup_address_resolve_sync(address, 0);
 
-    m_soupServer = soup_server_new(SOUP_SERVER_INTERFACE, address, 0);
+    m_soupServer = soup_server_new(SOUP_SERVER_INTERFACE, address, static_cast<char*>(0));
     m_baseURI = soup_uri_new("http://127.0.0.1/");
     soup_uri_set_port(m_baseURI, soup_server_get_port(m_soupServer));
     g_object_unref(address);
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to