diff options
author | Max Kellermann <max@duempel.org> | 2013-10-02 12:20:36 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-10-02 12:20:36 +0200 |
commit | 86316b182865caf7fd76bee1b6d50c66e11a3ce2 (patch) | |
tree | f2d5501bc4c27d9a40ac1290460ccc64bfc2cf72 /src/output/HttpdInternal.hxx | |
parent | efc3a69dbf17affd067d25d0f89bf09aacb3aa8e (diff) | |
download | mpd-86316b182865caf7fd76bee1b6d50c66e11a3ce2.tar.gz mpd-86316b182865caf7fd76bee1b6d50c66e11a3ce2.tar.xz mpd-86316b182865caf7fd76bee1b6d50c66e11a3ce2.zip |
output/httpd: don't include glib.h in header
Diffstat (limited to '')
-rw-r--r-- | src/output/HttpdInternal.hxx | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/output/HttpdInternal.hxx b/src/output/HttpdInternal.hxx index 9437cfedf..445e2ff1a 100644 --- a/src/output/HttpdInternal.hxx +++ b/src/output/HttpdInternal.hxx @@ -30,8 +30,6 @@ #include "thread/Mutex.hxx" #include "event/ServerSocket.hxx" -#include <glib.h> - #include <forward_list> struct config_param; @@ -121,7 +119,7 @@ struct HttpdOutput final : private ServerSocket { * The maximum and current number of clients connected * at the same time. */ - guint clients_max, clients_cnt; + unsigned clients_max, clients_cnt; HttpdOutput(EventLoop &_loop); ~HttpdOutput(); |