diff options
author | Max Kellermann <max@duempel.org> | 2008-09-25 19:19:37 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-09-25 19:19:37 +0200 |
commit | 84f5a0e883f96adf58c8fd182650a1372e367563 (patch) | |
tree | ed84df0fdc88364f01e4fc865b11dfc1c652086c /src/filelist.c | |
parent | 434615a48f315a0655891149efa42dc6b919e722 (diff) | |
download | mpd-84f5a0e883f96adf58c8fd182650a1372e367563.tar.gz mpd-84f5a0e883f96adf58c8fd182650a1372e367563.tar.xz mpd-84f5a0e883f96adf58c8fd182650a1372e367563.zip |
filelist: removed attribute "updated"
Since all screen updating is now on demand, we don't need this flag
anymore.
Diffstat (limited to 'src/filelist.c')
-rw-r--r-- | src/filelist.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/filelist.c b/src/filelist.c index 59fed4702..46137cd3b 100644 --- a/src/filelist.c +++ b/src/filelist.c @@ -29,7 +29,6 @@ filelist_new(const char *path) struct filelist *filelist = g_malloc(sizeof(*filelist)); filelist->path = g_strdup(path); - filelist->updated = FALSE; filelist->entries = g_ptr_array_new(); return filelist; |