diff options
author | Max Kellermann <max@duempel.org> | 2009-10-13 18:01:06 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2009-10-13 18:01:06 +0200 |
commit | f7ce4f6239ded6681713bc9e8d281712106e6f25 (patch) | |
tree | 1078ee0df1551a0e27bae71022c39a54affd07b6 /test/dump_playlist.c | |
parent | 28442cce9fa4a91c38d87c4a61b6ff6af4f97a67 (diff) | |
download | mpd-f7ce4f6239ded6681713bc9e8d281712106e6f25.tar.gz mpd-f7ce4f6239ded6681713bc9e8d281712106e6f25.tar.xz mpd-f7ce4f6239ded6681713bc9e8d281712106e6f25.zip |
song: renamed attribute "url" to "uri"
Diffstat (limited to '')
-rw-r--r-- | test/dump_playlist.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/dump_playlist.c b/test/dump_playlist.c index 146f5862f..d6e7f17c0 100644 --- a/test/dump_playlist.c +++ b/test/dump_playlist.c @@ -113,7 +113,7 @@ int main(int argc, char **argv) /* dump the playlist */ while ((song = playlist_plugin_read(playlist)) != NULL) { - g_print("%s\n", song->url); + g_print("%s\n", song->uri); if (song->tag != NULL) tag_save(stdout, song->tag); |