diff options
Diffstat (limited to 'common/rdr/ZlibInStream.cxx')
-rw-r--r-- | common/rdr/ZlibInStream.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/common/rdr/ZlibInStream.cxx b/common/rdr/ZlibInStream.cxx index c9f8aeca..57aa1e36 100644 --- a/common/rdr/ZlibInStream.cxx +++ b/common/rdr/ZlibInStream.cxx @@ -49,7 +49,7 @@ void ZlibInStream::flushUnderlying() { while (bytesIn > 0) { if (!hasData(1)) - throw std::runtime_error("ZlibInStream: failed to flush remaining stream data"); + throw std::runtime_error("ZlibInStream: Failed to flush remaining stream data"); skip(avail()); } @@ -91,7 +91,7 @@ void ZlibInStream::deinit() bool ZlibInStream::fillBuffer() { if (!underlying) - throw std::runtime_error("ZlibInStream overrun: no underlying stream"); + throw std::runtime_error("ZlibInStream overrun: No underlying stream"); zs->next_out = (uint8_t*)end; zs->avail_out = availSpace(); |