diff options
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); |