diff options
author | Max Kellermann <max@duempel.org> | 2008-09-18 01:55:45 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-09-18 01:55:45 +0200 |
commit | fe8895120e565f83f18fb3c0af7a0bbbc881e5d9 (patch) | |
tree | 61b2c130865a9f0bbeb43761a95596e9e4561dc8 /src/playlist.h | |
parent | f0aa88e5c18de0b1e4f5d85dd5c3ae5d9be76bc3 (diff) | |
download | mpd-fe8895120e565f83f18fb3c0af7a0bbbc881e5d9.tar.gz mpd-fe8895120e565f83f18fb3c0af7a0bbbc881e5d9.tar.xz mpd-fe8895120e565f83f18fb3c0af7a0bbbc881e5d9.zip |
playlist: removed "updated" flag
The caller may check the playlist.id instead of checking the old
"updated" flag.
Diffstat (limited to '')
-rw-r--r-- | src/playlist.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/playlist.h b/src/playlist.h index 93c034f5a..0d524adbe 100644 --- a/src/playlist.h +++ b/src/playlist.h @@ -33,9 +33,6 @@ typedef struct mpdclient_playlist { /* playlist id */ long long id; - /* true if the list is updated */ - gboolean updated; - /* the list */ GPtrArray *list; } mpdclient_playlist_t; |