diff options
author | Max Kellermann <max@duempel.org> | 2008-10-08 11:07:58 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-10-08 11:07:58 +0200 |
commit | 68977af6e078b7114195d098a89952b2c89274cd (patch) | |
tree | 0e9d0a59ce59e842c01a8f19162d2b7fa7424d6f /src/song.c | |
parent | bb8a9533b1a2df4ea34be2c6f053f22fe49a60d0 (diff) | |
download | mpd-68977af6e078b7114195d098a89952b2c89274cd.tar.gz mpd-68977af6e078b7114195d098a89952b2c89274cd.tar.xz mpd-68977af6e078b7114195d098a89952b2c89274cd.zip |
directory: eliminate CamelCase
CamelCase is ugly, rename the functions.
Diffstat (limited to 'src/song.c')
-rw-r--r-- | src/song.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/song.c b/src/song.c index 5653e045d..9cecbf815 100644 --- a/src/song.c +++ b/src/song.c @@ -128,7 +128,7 @@ song_get_url(struct song *song, char *path_max_tmp) strcpy(path_max_tmp, song->url); else pfx_dir(path_max_tmp, song->url, strlen(song->url), - getDirectoryPath(song->parent), - strlen(getDirectoryPath(song->parent))); + directory_get_path(song->parent), + strlen(directory_get_path(song->parent))); return path_max_tmp; } |