aboutsummaryrefslogtreecommitdiffstats
path: root/src/output
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2013-08-08 00:14:45 +0200
committerMax Kellermann <max@duempel.org>2013-08-08 00:18:59 +0200
commit0005221533aa4c4859e818f2599545392efe916d (patch)
treeee9465e40e5c6a5f400cd73bddb9fa80530b0460 /src/output
parent23d2c0f1c6b6c4a90c83701ef3a214ecf1d0609c (diff)
downloadmpd-0005221533aa4c4859e818f2599545392efe916d.tar.gz
mpd-0005221533aa4c4859e818f2599545392efe916d.tar.xz
mpd-0005221533aa4c4859e818f2599545392efe916d.zip
output/httpd: use "unsigned" instead of "guint"
Diffstat (limited to 'src/output')
-rw-r--r--src/output/HttpdClient.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/output/HttpdClient.hxx b/src/output/HttpdClient.hxx
index 46196d2e3..38e4ea96d 100644
--- a/src/output/HttpdClient.hxx
+++ b/src/output/HttpdClient.hxx
@@ -92,7 +92,7 @@ class HttpdClient final : public BufferedSocket {
/**
* The amount of streaming data between each metadata block
*/
- guint metaint;
+ unsigned metaint;
/**
* The metadata as #Page which is currently being sent to the client.
@@ -108,7 +108,7 @@ class HttpdClient final : public BufferedSocket {
* The amount of streaming data sent to the client
* since the last icy information was sent.
*/
- guint metadata_fill;
+ unsigned metadata_fill;
public:
/**