From 3e3b5a0bb831895be425af0e944cc4e57fb7f98c Mon Sep 17 00:00:00 2001 From: Norbert Nemec Date: Tue, 9 Oct 2012 12:15:17 +0200 Subject: [PATCH] fix compiler issue --- src/processors/hybi_header.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/processors/hybi_header.hpp b/src/processors/hybi_header.hpp index 02cb4448c8..72dddf2e0a 100644 --- a/src/processors/hybi_header.hpp +++ b/src/processors/hybi_header.hpp @@ -136,7 +136,7 @@ private: static const uint8_t STATE_WRITE = 4; uint8_t m_state; - uint64_t m_bytes_needed; + std::streamsize m_bytes_needed; uint64_t m_payload_size; char m_header[MAX_HEADER_LENGTH]; };