aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIan Jackson <ian.jackson@eu.citrix.com>2013-02-22 17:06:51 +0000
committerIan Jackson <Ian.Jackson@eu.citrix.com>2013-02-22 17:06:51 +0000
commit017399330afc8649cb7c3f5025f031c4f1873ca2 (patch)
treec41bcef3f55ef26702354d27ff9a41d648600105
parent67ef1d1fff26ce249dacbd44b756e56953b6599f (diff)
downloadxen-017399330afc8649cb7c3f5025f031c4f1873ca2.tar.gz
xen-017399330afc8649cb7c3f5025f031c4f1873ca2.tar.bz2
xen-017399330afc8649cb7c3f5025f031c4f1873ca2.zip
Revert "tools/libxc/xtl: fix logic error in stdiostream_progress"
This reverts commit 67ef1d1fff26ce249dacbd44b756e56953b6599f. There is probably nothing wrong with this but I send it to 4.2 by mistake. Revert it for now until it has had a chance in unstable.
-rw-r--r--tools/libxc/xtl_logger_stdio.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/libxc/xtl_logger_stdio.c b/tools/libxc/xtl_logger_stdio.c
index 24922d2d2e..3edf0a2fd7 100644
--- a/tools/libxc/xtl_logger_stdio.c
+++ b/tools/libxc/xtl_logger_stdio.c
@@ -89,7 +89,7 @@ static void stdiostream_progress(struct xentoollog_logger *logger_in,
int newpel, extra_erase;
xentoollog_level this_level;
- if (lg->flags & XTL_STDIOSTREAM_HIDE_PROGRESS)
+ if (!(lg->flags & XTL_STDIOSTREAM_HIDE_PROGRESS))
return;
if (percent < lg->progress_last_percent) {