27 lines
951 B
Diff
27 lines
951 B
Diff
|
changeset: 26547:8285d20a6f5b
|
||
|
user: Olaf Hering <olaf@aepfle.de>
|
||
|
date: Fri Feb 15 13:32:11 2013 +0000
|
||
|
files: tools/libxc/xtl_logger_stdio.c
|
||
|
description:
|
||
|
tools/xc: fix logic error in stdiostream_progress
|
||
|
|
||
|
Setting XTL_STDIOSTREAM_HIDE_PROGRESS should disable progress reporting.
|
||
|
|
||
|
Signed-off-by: Olaf Hering <olaf@aepfle.de>
|
||
|
Acked-by: Ian Campbell <ian.campbell@citrix.com>
|
||
|
Committed-by: Ian Campbell <ian.campbell@citrix.com>
|
||
|
|
||
|
|
||
|
diff -r 0141aeb86b79 -r 8285d20a6f5b tools/libxc/xtl_logger_stdio.c
|
||
|
--- a/tools/libxc/xtl_logger_stdio.c Fri Feb 15 13:32:10 2013 +0000
|
||
|
+++ b/tools/libxc/xtl_logger_stdio.c Fri Feb 15 13:32:11 2013 +0000
|
||
|
@@ -89,7 +89,7 @@ static void stdiostream_progress(struct
|
||
|
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) {
|