diff options
author | Max Kellermann <max@duempel.org> | 2013-01-10 20:52:44 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-01-10 20:52:44 +0100 |
commit | 2ca92368647860929bc1b50d84ba93688d82abcc (patch) | |
tree | cc309cb481223f3ab49e6f400ef88d8d75313b7d | |
parent | 3bb711837ebd0514c9a55c992d3a98cd39dfe086 (diff) | |
download | mpd-2ca92368647860929bc1b50d84ba93688d82abcc.tar.gz mpd-2ca92368647860929bc1b50d84ba93688d82abcc.tar.xz mpd-2ca92368647860929bc1b50d84ba93688d82abcc.zip |
input/Curl: remove unused attribute "fds"
-rw-r--r-- | src/input/CurlInputPlugin.cxx | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/input/CurlInputPlugin.cxx b/src/input/CurlInputPlugin.cxx index c4f9ef0d6..f1bd6c134 100644 --- a/src/input/CurlInputPlugin.cxx +++ b/src/input/CurlInputPlugin.cxx @@ -96,9 +96,6 @@ struct input_curl { /** the source id of #source */ guint source_id; - /** a linked list of all registered GPollFD objects */ - GSList *fds; - /** list of buffers, where input_curl_writefunction() appends to, and input_curl_read() reads from them */ GQueue *buffers; @@ -153,6 +150,7 @@ static struct { */ guint source_id; + /** a linked list of all registered GPollFD objects */ GSList *fds; /** |