diff options
author | Max Kellermann <max@duempel.org> | 2008-10-22 17:23:58 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-10-22 17:23:58 +0200 |
commit | d2606baa7923c2ba6befd87a6c8acf20ce5376f1 (patch) | |
tree | 957171de09f1b3de1c51b74cc44ced8cb23c35b1 /src/stored_playlist.c | |
parent | 1da921f03cc3063dc309d0e1afdcd41e201f55a2 (diff) | |
download | mpd-d2606baa7923c2ba6befd87a6c8acf20ce5376f1.tar.gz mpd-d2606baa7923c2ba6befd87a6c8acf20ce5376f1.tar.xz mpd-d2606baa7923c2ba6befd87a6c8acf20ce5376f1.zip |
stored_playlist: de-CamelCase moved function
Rename addToStoredPlaylist() to spl_append_uri(), and remove the
clearStoredPlaylist() macro.
Diffstat (limited to 'src/stored_playlist.c')
-rw-r--r-- | src/stored_playlist.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/stored_playlist.c b/src/stored_playlist.c index 1a8d64e5c..bbffa510b 100644 --- a/src/stored_playlist.c +++ b/src/stored_playlist.c @@ -317,7 +317,8 @@ spl_append_song(const char *utf8path, struct song *song) return PLAYLIST_RESULT_SUCCESS; } -int addToStoredPlaylist(const char *url, const char *utf8file) +int +spl_append_uri(const char *url, const char *utf8file) { struct song *song; |