summaryrefslogtreecommitdiff
path: root/hwpfilter/source/hgzip.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-01-10 11:55:54 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-01-10 17:11:46 +0100
commit581cfc49baddae96b12ed29724e929a2ded1e886 (patch)
treed205a9f5ee3222c7a529de9ee5673c70c18a6ac4 /hwpfilter/source/hgzip.cxx
parent55663afa0ee1cf36968b278d81fc8ad686de5435 (diff)
Use bool
Change-Id: I161d250d4621dbdf487eea1a66773339b8005412
Diffstat (limited to 'hwpfilter/source/hgzip.cxx')
-rw-r--r--hwpfilter/source/hgzip.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/hwpfilter/source/hgzip.cxx b/hwpfilter/source/hgzip.cxx
index e1cf5986d8da..20f40d26855b 100644
--- a/hwpfilter/source/hgzip.cxx
+++ b/hwpfilter/source/hgzip.cxx
@@ -241,7 +241,7 @@ int gz_read(gz_stream * file, voidp buf, unsigned len)
int gz_flush(gz_stream * file, int flush)
{
uInt len;
- int done = 0;
+ bool done = false;
gz_stream *s = (gz_stream *) file;
if (s == NULL || s->mode != 'w')