diff options
author | Max Kellermann <max@duempel.org> | 2013-01-18 15:33:34 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-01-18 15:34:01 +0100 |
commit | 890151450663abd581cab56e853e8e713d822851 (patch) | |
tree | f4bf31e08d7483e0041333c6ebf69a468b48b975 /src/song.h | |
parent | 21fe376d1d9ffa6064cf89faab7860d443d9f7fd (diff) |
Playlist, Song: clarify parameter encoding
Diffstat (limited to 'src/song.h')
-rw-r--r-- | src/song.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/song.h b/src/song.h index db582beea..4095317f6 100644 --- a/src/song.h +++ b/src/song.h @@ -76,7 +76,7 @@ song_remote_new(const char *uri); /** allocate a new song with a local file name */ struct song * -song_file_new(const char *path, struct Directory *parent); +song_file_new(const char *path_utf8, struct Directory *parent); /** * allocate a new song structure with a local file name and attempt to @@ -84,7 +84,7 @@ song_file_new(const char *path, struct Directory *parent); * data, NULL is returned. */ struct song * -song_file_load(const char *path, struct Directory *parent); +song_file_load(const char *path_utf8, struct Directory *parent); /** * Replaces the URI of a song object. The given song object is |