stored_playlist: no CamelCase

Renamed all public functions, prefix is "spl_".
This commit is contained in:
Max Kellermann
2008-10-22 17:21:59 +02:00
parent a4def81313
commit ac853b6165
5 changed files with 39 additions and 34 deletions

View File

@@ -208,7 +208,7 @@ directoryAddSongToStoredPlaylist(struct song *song, void *_data)
{
struct add_data *data = _data;
if (appendSongToStoredPlaylistByPath(data->path, song) != 0)
if (spl_append_song(data->path, song) != 0)
return -1;
return 0;
}