Title: [137218] trunk/Source/WebCore
Revision
137218
Author
[email protected]
Date
2012-12-10 15:55:07 -0800 (Mon, 10 Dec 2012)

Log Message

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

Patch by KyungTae Kim <[email protected]> on 2012-12-10
Reviewed by Martin Robinson.

The nextMultipartResponsePartCallback has unused parameter 'source',
comment out it to fix 'unused parameter' build warning.

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

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (137217 => 137218)


--- trunk/Source/WebCore/ChangeLog	2012-12-10 23:43:55 UTC (rev 137217)
+++ trunk/Source/WebCore/ChangeLog	2012-12-10 23:55:07 UTC (rev 137218)
@@ -1,3 +1,16 @@
+2012-12-10  KyungTae Kim  <[email protected]>
+
+        [soup] Fix build warning in ResourceHandleSoup.cpp
+        https://bugs.webkit.org/show_bug.cgi?id=104605
+
+        Reviewed by Martin Robinson.
+
+        The nextMultipartResponsePartCallback has unused parameter 'source',
+        comment out it to fix 'unused parameter' build warning.
+
+        * platform/network/soup/ResourceHandleSoup.cpp:
+        (WebCore::nextMultipartResponsePartCallback):
+
 2012-12-10  Simon Fraser  <[email protected]>
 
         Fix frame border painting in tiled drawing mode

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


--- trunk/Source/WebCore/platform/network/soup/ResourceHandleSoup.cpp	2012-12-10 23:43:55 UTC (rev 137217)
+++ trunk/Source/WebCore/platform/network/soup/ResourceHandleSoup.cpp	2012-12-10 23:55:07 UTC (rev 137218)
@@ -491,7 +491,7 @@
     return true;
 }
 
-static void nextMultipartResponsePartCallback(GObject* source, GAsyncResult* result, gpointer data)
+static void nextMultipartResponsePartCallback(GObject* /*source*/, GAsyncResult* result, gpointer data)
 {
     RefPtr<ResourceHandle> handle = static_cast<ResourceHandle*>(data);
 
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to