From 5e7b18f87458b3f7a65d23d87f7db3d864fbbf11 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Wed, 8 Oct 2008 11:05:34 +0200 Subject: song: removed CamelCase CamelCase is ugly... rename all functions. --- src/song_print.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/song_print.c') diff --git a/src/song_print.c b/src/song_print.c index cfd6a7357..e646f23de 100644 --- a/src/song_print.c +++ b/src/song_print.c @@ -26,9 +26,9 @@ void song_print_url(struct client *client, struct song *song) { - if (song->parentDir && song->parentDir->path) { + if (song->parent && song->parent->path) { client_printf(client, "%s%s/%s\n", SONG_FILE, - getDirectoryPath(song->parentDir), song->url); + getDirectoryPath(song->parent), song->url); } else { client_printf(client, "%s%s\n", SONG_FILE, song->url); } -- cgit v1.2.3