aboutsummaryrefslogtreecommitdiffstats
path: root/src/song_print.c
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2008-10-08 11:07:58 +0200
committerMax Kellermann <max@duempel.org>2008-10-08 11:07:58 +0200
commit68977af6e078b7114195d098a89952b2c89274cd (patch)
tree0e9d0a59ce59e842c01a8f19162d2b7fa7424d6f /src/song_print.c
parentbb8a9533b1a2df4ea34be2c6f053f22fe49a60d0 (diff)
downloadmpd-68977af6e078b7114195d098a89952b2c89274cd.tar.gz
mpd-68977af6e078b7114195d098a89952b2c89274cd.tar.xz
mpd-68977af6e078b7114195d098a89952b2c89274cd.zip
directory: eliminate CamelCase
CamelCase is ugly, rename the functions.
Diffstat (limited to 'src/song_print.c')
-rw-r--r--src/song_print.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/song_print.c b/src/song_print.c
index e646f23de..879cf48ea 100644
--- a/src/song_print.c
+++ b/src/song_print.c
@@ -28,7 +28,7 @@ song_print_url(struct client *client, struct song *song)
{
if (song->parent && song->parent->path) {
client_printf(client, "%s%s/%s\n", SONG_FILE,
- getDirectoryPath(song->parent), song->url);
+ directory_get_path(song->parent), song->url);
} else {
client_printf(client, "%s%s\n", SONG_FILE, song->url);
}