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) {}