From 4162ce0bc578c427b3cc5c5abf424fab13606f02 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Sun, 19 Feb 2017 19:49:53 +0100 Subject: [PATCH] output/httpd/Page: use uint8_t instead of unsigned char --- src/output/plugins/httpd/Page.hxx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/output/plugins/httpd/Page.hxx b/src/output/plugins/httpd/Page.hxx index 301537ae1..ac9060629 100644 --- a/src/output/plugins/httpd/Page.hxx +++ b/src/output/plugins/httpd/Page.hxx @@ -28,6 +28,7 @@ #include "util/RefCount.hxx" #include +#include /** * A dynamically allocated buffer which keeps track of its reference @@ -52,7 +53,7 @@ public: /** * Dynamic array containing the buffer data. */ - unsigned char data[sizeof(long)]; + uint8_t data[sizeof(long)]; protected: Page(size_t _size):size(_size) {}