comparison src/audacious/playlist.c @ 2328:d88558b0de0a trunk

[svn] - Added script for migration to XDG basedir. - Fixed tons of warnings.
author js
date Sat, 13 Jan 2007 16:41:21 -0800
parents 3149d4b1a9a9
children ad1d7687814c
comparison
equal deleted inserted replaced
2327:921b2d8d9b2e 2328:d88558b0de0a
94 * January 7, 2006, William Pitcock <nenolod@nenolod.net> 94 * January 7, 2006, William Pitcock <nenolod@nenolod.net>
95 */ 95 */
96 96
97 G_LOCK_DEFINE(playlist_get_info_going); 97 G_LOCK_DEFINE(playlist_get_info_going);
98 98
99 static gchar *playlist_current_name = NULL; 99 //static gchar *playlist_current_name = NULL;
100 100
101 static gboolean playlist_get_info_scan_active = FALSE; 101 static gboolean playlist_get_info_scan_active = FALSE;
102 static gboolean playlist_get_info_going = FALSE; 102 static gboolean playlist_get_info_going = FALSE;
103 static GThread *playlist_get_info_thread; 103 static GThread *playlist_get_info_thread;
104 104
2258 { 2258 {
2259 gchar *path = NULL; 2259 gchar *path = NULL;
2260 GList *node; 2260 GList *node;
2261 PlaylistEntry *entry = NULL; 2261 PlaylistEntry *entry = NULL;
2262 TitleInput *tuple = NULL; 2262 TitleInput *tuple = NULL;
2263 gint mtime;
2264 2263
2265 PLAYLIST_LOCK(playlist->mutex); 2264 PLAYLIST_LOCK(playlist->mutex);
2266 2265
2267 if ((node = g_list_nth(playlist->entries, pos))) 2266 if ((node = g_list_nth(playlist->entries, pos)))
2268 { 2267 {