aboutsummaryrefslogtreecommitdiffstats
path: root/src/storedPlaylist.c
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2008-10-08 11:07:55 +0200
committerEric Wong <normalperson@yhbt.net>2008-10-11 19:21:48 -0700
commit4629f646077109f7c6185aab92560da52c237412 (patch)
treeaf62c1fd2d29c53d137f8b390682492bf0ef102d /src/storedPlaylist.c
parent0576b8abf8b2fd25105f6e0190a93ddec298e9fb (diff)
downloadmpd-4629f646077109f7c6185aab92560da52c237412.tar.gz
mpd-4629f646077109f7c6185aab92560da52c237412.tar.xz
mpd-4629f646077109f7c6185aab92560da52c237412.zip
database: renamed functions, "db_" prefix and no CamelCase
Yet another CamelCase removal patch.
Diffstat (limited to '')
-rw-r--r--src/storedPlaylist.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/storedPlaylist.c b/src/storedPlaylist.c
index c83f7115d..2e6828483 100644
--- a/src/storedPlaylist.c
+++ b/src/storedPlaylist.c
@@ -118,7 +118,7 @@ List *loadStoredPlaylist(const char *utf8path)
!strncmp(s, musicDir, musicDir_len))
memmove(s, s + musicDir_len + 1,
strlen(s + musicDir_len + 1) + 1);
- if ((song = getSongFromDB(s))) {
+ if ((song = db_get_song(s))) {
song_get_url(song, path_max_tmp);
insertInListWithoutKey(list, xstrdup(path_max_tmp));
} else if (isValidRemoteUtf8Url(s))