[Spice-commits] gtk/spice-gstaudio.c

Marc-André Lureau elmarco at kemper.freedesktop.org
Tue May 12 06:06:56 PDT 2015


 gtk/spice-gstaudio.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 74b7f5c961a4b797f26761723a0530e37204f01f
Author: Lukas Venhoda <lvenhoda at redhat.com>
Date:   Tue May 12 14:51:41 2015 +0200

    spice-gtk: Fixed build when using audio gstreamer
    
    Commit No. 63bf00275769928850113b4df205df08d6303b45 changed number of
    arguments of function playback_stop(), and didn't change call of this
    function on line 628.
    
    This would break building when using --with-audio=gstreamer

diff --git a/gtk/spice-gstaudio.c b/gtk/spice-gstaudio.c
index 99d12b1..1623421 100644
--- a/gtk/spice-gstaudio.c
+++ b/gtk/spice-gstaudio.c
@@ -625,7 +625,7 @@ static gboolean spice_gstaudio_get_playback_volume_info_finish(SpiceAudio *audio
 
     if (fake_channel) {
         SPICE_DEBUG("Stop faked PlaybackChannel");
-        playback_stop(NULL, audio);
+        playback_stop(SPICE_GSTAUDIO(audio));
     }
 
     if (mute != NULL) {


More information about the Spice-commits mailing list