Title: [139946] trunk/Source/WebCore
Revision
139946
Author
[email protected]
Date
2013-01-16 18:20:23 -0800 (Wed, 16 Jan 2013)

Log Message

[soup] Fix build warning in ResourceHandleSoup.cpp
https://bugs.webkit.org/show_bug.cgi?id=107063

Patch by Donghyun Kim <[email protected]> on 2013-01-16
Reviewed by Martin Robinson.

The restartedCallback has unused parameter 'message',
remove the parameter name to fix 'unused parameter' build warning.

* platform/network/soup/ResourceHandleSoup.cpp:
(WebCore::restartedCallback):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (139945 => 139946)


--- trunk/Source/WebCore/ChangeLog	2013-01-17 02:18:20 UTC (rev 139945)
+++ trunk/Source/WebCore/ChangeLog	2013-01-17 02:20:23 UTC (rev 139946)
@@ -1,3 +1,16 @@
+2013-01-16  Donghyun Kim  <[email protected]>
+
+        [soup] Fix build warning in ResourceHandleSoup.cpp
+        https://bugs.webkit.org/show_bug.cgi?id=107063
+
+        Reviewed by Martin Robinson.
+
+        The restartedCallback has unused parameter 'message', 
+        remove the parameter name to fix 'unused parameter' build warning.
+
+        * platform/network/soup/ResourceHandleSoup.cpp:
+        (WebCore::restartedCallback):
+
 2013-01-16  Tony Gentilcore  <[email protected]>
 
         Introduce a CompactHTMLToken for the threaded HTML parser

Modified: trunk/Source/WebCore/platform/network/soup/ResourceHandleSoup.cpp (139945 => 139946)


--- trunk/Source/WebCore/platform/network/soup/ResourceHandleSoup.cpp	2013-01-17 02:18:20 UTC (rev 139945)
+++ trunk/Source/WebCore/platform/network/soup/ResourceHandleSoup.cpp	2013-01-17 02:20:23 UTC (rev 139946)
@@ -375,7 +375,7 @@
 
 // Called each time the message is going to be sent again except the first time.
 // This happens when libsoup handles HTTP authentication.
-static void restartedCallback(SoupMessage* message, gpointer data)
+static void restartedCallback(SoupMessage*, gpointer data)
 {
     ResourceHandle* handle = static_cast<ResourceHandle*>(data);
     if (!handle)
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to