comparison audacious/playlist_container.c @ 1551:a4180850edfe trunk

[svn] - fix
author nenolod
date Thu, 10 Aug 2006 18:39:05 -0700
parents be50c53aee09
children aaca4aab4670
comparison
equal deleted inserted replaced
1550:be50c53aee09 1551:a4180850edfe
62 PlaylistContainer *plc = playlist_container_find(ext); 62 PlaylistContainer *plc = playlist_container_find(ext);
63 63
64 if (plc->plc_read == NULL) 64 if (plc->plc_read == NULL)
65 return; 65 return;
66 66
67 list = plc->plc_read(filename, pos); 67 plc->plc_read(filename, pos);
68 } 68 }
69 69
70 void playlist_container_write(char *filename, gint pos) 70 void playlist_container_write(char *filename, gint pos)
71 { 71 {
72 char *ext = strrchr(filename, '.') + 1; /* optimization: skip past the dot -nenolod */ 72 char *ext = strrchr(filename, '.') + 1; /* optimization: skip past the dot -nenolod */