diff src/sid/xmms-sid.c @ 563:ccf952b07c77 trunk

[svn] Fix sid for current API.
author iabervon
date Sun, 28 Jan 2007 22:15:52 -0800
parents 914c96de3244
children 6c3c7b841382
line wrap: on
line diff
--- a/src/sid/xmms-sid.c	Sun Jan 28 22:14:55 2007 -0800
+++ b/src/sid/xmms-sid.c	Sun Jan 28 22:15:52 2007 -0800
@@ -138,7 +138,7 @@
 	g_static_mutex_lock(&xs_status_mutex);
 	if (xs_status.isPlaying) {
 		g_static_mutex_unlock(&xs_status_mutex);
-		xs_stop();
+		xs_stop(NULL);
 	} else {
 		g_static_mutex_unlock(&xs_status_mutex);
 	}
@@ -241,7 +241,7 @@
 	XSDEBUG("xs_close(): shutting down...\n");
 
 	/* Stop playing, free structures */
-	xs_stop();
+	xs_stop(NULL);
 
 	xs_tuneinfo_free(xs_status.tuneInfo);
 	xs_status.tuneInfo = NULL;
@@ -809,7 +809,7 @@
  * This function is called whenever position slider is clicked or
  * other method of seeking is used (keyboard, etc.)
  */
-void xs_seek(gint iTime)
+void xs_seek(InputPlayback *playback, gint iTime)
 {
 	/* Check status */
 	g_static_mutex_lock(&xs_status_mutex);