Title: [157560] trunk/Source/WebCore
Revision
157560
Author
commit-qu...@webkit.org
Date
2013-10-17 00:22:00 -0700 (Thu, 17 Oct 2013)

Log Message

[GStreamer] Too many arguments for format in WebKitWebAudioSourceGStreamer.cpp
https://bugs.webkit.org/show_bug.cgi?id=122932

Patch by Brendan Long <b.l...@cablelabs.com> on 2013-10-17
Reviewed by Philippe Normand.

No new tests because this just fixes a build warning.

* platform/audio/gstreamer/WebKitWebAudioSourceGStreamer.cpp:
(webKitWebAudioSrcLoop): Add another %s for the second part of the pad name.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (157559 => 157560)


--- trunk/Source/WebCore/ChangeLog	2013-10-17 07:20:20 UTC (rev 157559)
+++ trunk/Source/WebCore/ChangeLog	2013-10-17 07:22:00 UTC (rev 157560)
@@ -1,3 +1,15 @@
+2013-10-17  Brendan Long  <b.l...@cablelabs.com>
+
+        [GStreamer] Too many arguments for format in WebKitWebAudioSourceGStreamer.cpp
+        https://bugs.webkit.org/show_bug.cgi?id=122932
+
+        Reviewed by Philippe Normand.
+
+        No new tests because this just fixes a build warning.
+
+        * platform/audio/gstreamer/WebKitWebAudioSourceGStreamer.cpp:
+        (webKitWebAudioSrcLoop): Add another %s for the second part of the pad name.
+
 2013-10-16  Tim Horton  <timothy_hor...@apple.com>
 
         Attempt to fix the Windows build after http://trac.webkit.org/changeset/157547.

Modified: trunk/Source/WebCore/platform/audio/gstreamer/WebKitWebAudioSourceGStreamer.cpp (157559 => 157560)


--- trunk/Source/WebCore/platform/audio/gstreamer/WebKitWebAudioSourceGStreamer.cpp	2013-10-17 07:20:20 UTC (rev 157559)
+++ trunk/Source/WebCore/platform/audio/gstreamer/WebKitWebAudioSourceGStreamer.cpp	2013-10-17 07:22:00 UTC (rev 157560)
@@ -389,7 +389,7 @@
 
         GstFlowReturn ret = gst_pad_chain(pad, channelBuffer);
         if (ret != GST_FLOW_OK)
-            GST_ELEMENT_ERROR(src, CORE, PAD, ("Internal WebAudioSrc error"), ("Failed to push buffer on %s", GST_DEBUG_PAD_NAME(pad)));
+            GST_ELEMENT_ERROR(src, CORE, PAD, ("Internal WebAudioSrc error"), ("Failed to push buffer on %s:%s", GST_DEBUG_PAD_NAME(pad)));
     }
 
     g_slist_free(channelBufferList);
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to