Fix bytesLeftToRead

This commit is contained in:
Ryan Huffman 2015-07-15 10:51:40 -07:00
parent 44c99ef89a
commit 3b8a335c8c

View file

@ -53,7 +53,7 @@ public:
qint64 getSizeUsed() const { return _sizeUsed; }
void setSizeUsed(qint64 sizeUsed) { _sizeUsed = sizeUsed; }
void bytesLeftToRead() const { return _capacity - pos(); }
qint64 bytesLeftToRead() const { return _capacity - pos(); }
qint64 bytesAvailableForWrite() const { return _capacity - pos(); }
HifiSockAddr& getSenderSockAddr() { return _senderSockAddr; }