# HG changeset patch # User Matti Hamalainen # Date 1172017500 0 # Node ID 8cdd288ebb5364aac79cd52ceacd8960f4b9f252 # Parent d609d0ece252c1f163d68ee59912f67c0a3d9e2d Removed cruft. diff -r d609d0ece252 -r 8cdd288ebb53 src/xmms-sid.c --- a/src/xmms-sid.c Wed Feb 21 00:12:04 2007 +0000 +++ b/src/xmms-sid.c Wed Feb 21 00:25:00 2007 +0000 @@ -589,13 +589,7 @@ xs_status.currSong = xs_status.tuneInfo->startTune; /* Start the playing thread! */ -#ifdef AUDACIOUS_PLUGIN - xs_decode_thread = g_thread_create((GThreadFunc) xs_playthread, NULL, TRUE, NULL); - if (xs_decode_thread == NULL) -#else - if (pthread_create(&xs_decode_thread, NULL, xs_playthread, NULL) < 0) -#endif - { + if (pthread_create(&xs_decode_thread, NULL, xs_playthread, NULL) < 0) { xs_error(_("Couldn't create playing thread!\n")); xs_tuneinfo_free(xs_status.tuneInfo); xs_status.tuneInfo = NULL;