Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYuri Gorshenin <y@maps.me>2017-01-30 14:06:09 +0300
committerYuri Gorshenin <y@maps.me>2017-01-30 14:06:54 +0300
commit88a91dc90be35617b52f4304f216762077075007 (patch)
tree781daac71dd09c211f5dc07e6de20dc8549e50b1 /coding/zlib.cpp
parent39b800ec8655d443b23b5ec1c05f47dd1771f770 (diff)
Review fixes.
Diffstat (limited to 'coding/zlib.cpp')
-rw-r--r--coding/zlib.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/coding/zlib.cpp b/coding/zlib.cpp
index 2d40bbcebe..15de3ccf13 100644
--- a/coding/zlib.cpp
+++ b/coding/zlib.cpp
@@ -61,9 +61,9 @@ ZLib::DeflateProcessor::~DeflateProcessor() noexcept
int bits = 0;
int const ret = deflatePending(&m_stream, &bytes, &bits);
UNUSED_VALUE(ret);
- ASSERT_EQUAL(ret, Z_OK, (""));
- ASSERT_EQUAL(bytes, 0, ("Some bytes were not flushed:", bytes));
- ASSERT_EQUAL(bits, 0, ("Some bits were not flushed:", bits));
+ ASSERT_EQUAL(ret, Z_OK, ());
+ ASSERT_EQUAL(bytes, 0, (bytes, "bytes were not flushed"));
+ ASSERT_EQUAL(bits, 0, (bits, "bits were not flushed"));
if (m_init)
deflateEnd(&m_stream);