diff options
author | Victor Toso <victortoso@redhat.com> | 2016-01-08 09:51:40 +0100 |
---|---|---|
committer | Victor Toso <victortoso@redhat.com> | 2016-03-12 14:10:59 +0100 |
commit | f019f25d0e9c1931bf87896d876b96ac64e66c45 (patch) | |
tree | 5393e15973a9fe7a49d829e970b66d52cc243803 /src/decode-zlib.c | |
parent | 0a1dbd99189207a74dbf7ff2b18bd8f3ef0d7cd2 (diff) |
log: use spice_warning instead of g_warning
Diffstat (limited to 'src/decode-zlib.c')
-rw-r--r-- | src/decode-zlib.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/decode-zlib.c b/src/decode-zlib.c index a5325c0..d49ce46 100644 --- a/src/decode-zlib.c +++ b/src/decode-zlib.c @@ -47,7 +47,7 @@ static void decode(SpiceZlibDecoder *decoder, z_ret = inflate(&d->_z_strm, Z_FINISH); if (z_ret != Z_STREAM_END) { - g_warning("zlib inflate failed, error %d", z_ret); + spice_warning("zlib inflate failed, error %d", z_ret); } } @@ -67,7 +67,7 @@ SpiceZlibDecoder *zlib_decoder_new(void) d->_z_strm.avail_in = 0; z_ret = inflateInit(&d->_z_strm); if (z_ret != Z_OK) { - g_warning("zlib decoder init failed, error %d", z_ret); + spice_warning("zlib decoder init failed, error %d", z_ret); goto fail; } |