remove unused variables

This commit is contained in:
Peter Thorson
2014-02-02 15:14:12 -06:00
parent 2000746be7
commit 6ee7c368bb

View File

@@ -494,13 +494,11 @@ public:
m_dstate.next_in = (unsigned char *)(const_cast<char *>(in.data()));
do {
int ret;
// Output to local buffer
m_dstate.avail_out = m_compress_buffer_size;
m_dstate.next_out = m_compress_buffer.get();
ret = deflate(&m_dstate, Z_SYNC_FLUSH);
deflate(&m_dstate, Z_SYNC_FLUSH);
output = m_compress_buffer_size - m_dstate.avail_out;