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_save.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_save.c')
-rw-r--r-- | src/song_save.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/song_save.c b/src/song_save.c index 1afac0979..41e694611 100644 --- a/src/song_save.c +++ b/src/song_save.c @@ -33,7 +33,7 @@ song_save_url(FILE *fp, struct song *song) { if (song->parent != NULL && song->parent->path != NULL) fprintf(fp, SONG_FILE "%s/%s\n", - getDirectoryPath(song->parent), song->url); + directory_get_path(song->parent), song->url); else fprintf(fp, SONG_FILE "%s\n", song->url); |