aboutsummaryrefslogtreecommitdiff
path: root/squashfs-tools/error.h
diff options
context:
space:
mode:
authorPhillip Lougher <phillip@squashfs.org.uk>2013-03-10 02:41:09 +0000
committerMohamad Ayyash <mkayyash@google.com>2015-02-23 12:35:46 -0800
commit17fced9bd80c76bc7ad4bfaf477d67c51fd47695 (patch)
treee4fc09de18204baa979a90d3ad699a7d86b622bf /squashfs-tools/error.h
parent9a0e8bb0899e0971fe1d81b7d8b83d2a21701b2b (diff)
downloadsquashfs-tools-17fced9bd80c76bc7ad4bfaf477d67c51fd47695.tar.gz
error: use progressbar_info for TRACE to synchronise it
Signed-off-by: Phillip Lougher <phillip@squashfs.org.uk>
Diffstat (limited to 'squashfs-tools/error.h')
-rw-r--r--squashfs-tools/error.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/squashfs-tools/error.h b/squashfs-tools/error.h
index 974dd28..c5a34fd 100644
--- a/squashfs-tools/error.h
+++ b/squashfs-tools/error.h
@@ -29,7 +29,7 @@ extern void progressbar_info(char *fmt, ...);
#ifdef SQUASHFS_TRACE
#define TRACE(s, args...) \
do { \
- printf("mksquashfs: "s, ## args); \
+ progressbar_info("mksquashfs: "s, ## args);\
} while(0)
#else
#define TRACE(s, args...)