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 /src/song_update.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 'src/song_update.c')
-rw-r--r-- | src/song_update.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/song_update.c b/src/song_update.c index 77b447e47..4c1c69da2 100644 --- a/src/song_update.c +++ b/src/song_update.c @@ -103,7 +103,7 @@ song_file_update(struct song *song) /* check if there's a suffix and a plugin */ - suffix = uri_get_suffix(song->url); + suffix = uri_get_suffix(song->uri); if (suffix == NULL) return false; @@ -152,7 +152,7 @@ song_file_update_inarchive(struct song *song) /* check if there's a suffix and a plugin */ - suffix = uri_get_suffix(song->url); + suffix = uri_get_suffix(song->uri); if (suffix == NULL) return false; |