summaryrefslogtreecommitdiffstats
path: root/client/zlib_decoder.cpp
diff options
context:
space:
mode:
authorDaniel P. Berrange <berrange@redhat.com>2012-01-10 15:26:55 +0000
committerAlon Levy <alevy@redhat.com>2012-01-13 18:11:59 +0200
commit68c2897e5bc910151ab5f6c1c06299ae7e60c678 (patch)
tree310c8fe12f509c67d350a74b0ecfefc363bb6843 /client/zlib_decoder.cpp
parent51f1ad54ad51cdf202566f26e7d29082a3c577ed (diff)
downloadspice-68c2897e5bc910151ab5f6c1c06299ae7e60c678.tar.gz
spice-68c2897e5bc910151ab5f6c1c06299ae7e60c678.tar.xz
spice-68c2897e5bc910151ab5f6c1c06299ae7e60c678.zip
Remove trailing whitespace from end of lines
Diffstat (limited to 'client/zlib_decoder.cpp')
-rw-r--r--client/zlib_decoder.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/client/zlib_decoder.cpp b/client/zlib_decoder.cpp
index 6c154fef..f5741d3e 100644
--- a/client/zlib_decoder.cpp
+++ b/client/zlib_decoder.cpp
@@ -36,7 +36,7 @@ static void op_decode(SpiceZlibDecoder *decoder,
ZlibDecoder::ZlibDecoder()
{
int z_ret;
-
+
_z_strm.zalloc = Z_NULL;
_z_strm.zfree = Z_NULL;
_z_strm.opaque = Z_NULL;
@@ -71,7 +71,7 @@ void ZlibDecoder::decode(uint8_t *data, int data_size, uint8_t *dest, int dest_s
_z_strm.avail_out = dest_size;
z_ret = inflate(&_z_strm, Z_FINISH);
-
+
if (z_ret != Z_STREAM_END) {
THROW("zlib inflate failed, error %d", z_ret);
}