Zebediah Figura : winegstreamer: Add a missing debugstr_a.

Alexandre Julliard julliard at winehq.org
Thu Jul 5 15:25:54 CDT 2018


Module: wine
Branch: master
Commit: f482b9463c45710adc4841f73899dc4e95cad067
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=f482b9463c45710adc4841f73899dc4e95cad067

Author: Zebediah Figura <z.figura12 at gmail.com>
Date:   Thu Jul  5 14:18:03 2018 +0200

winegstreamer: Add a missing debugstr_a.

Signed-off-by: Zebediah Figura <z.figura12 at gmail.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/winegstreamer/gstdemux.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dlls/winegstreamer/gstdemux.c b/dlls/winegstreamer/gstdemux.c
index 7fd1116..833464b 100644
--- a/dlls/winegstreamer/gstdemux.c
+++ b/dlls/winegstreamer/gstdemux.c
@@ -1087,7 +1087,7 @@ static GstBusSyncReply watch_bus(GstBus *bus, GstMessage *msg, gpointer data)
 static void unknown_type(GstElement *bin, GstPad *pad, GstCaps *caps, gpointer user)
 {
     gchar *strcaps = gst_caps_to_string(caps);
-    ERR("Could not find a filter for caps: %s\n", strcaps);
+    ERR("Could not find a filter for caps: %s\n", debugstr_a(strcaps));
     g_free(strcaps);
 }
 




More information about the wine-cvs mailing list