diff options
author | Denys Vlasenko | 2011-01-11 13:08:28 +0100 |
---|---|---|
committer | Denys Vlasenko | 2011-01-11 13:08:28 +0100 |
commit | dc7e5c46b0204bc3489ee961a631fb00533ae597 (patch) | |
tree | bebc35d178b4ceda516e05fa84b967cd461d5399 /libbb/progress.c | |
parent | 5a163b26451c591187482f99659e5fe639a0616a (diff) | |
download | busybox-dc7e5c46b0204bc3489ee961a631fb00533ae597.zip busybox-dc7e5c46b0204bc3489ee961a631fb00533ae597.tar.gz |
libbb unicode: comment out usused function and unused parameter
Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
Diffstat (limited to 'libbb/progress.c')
-rw-r--r-- | libbb/progress.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbb/progress.c b/libbb/progress.c index 3c7355f..40608b0 100644 --- a/libbb/progress.c +++ b/libbb/progress.c @@ -94,7 +94,7 @@ void FAST_FUNC bb_progress_update(bb_progress_t *p, #if ENABLE_UNICODE_SUPPORT init_unicode(); { - char *buf = unicode_conv_to_printable_fixedwidth(NULL, curfile, 20); + char *buf = unicode_conv_to_printable_fixedwidth(/*NULL,*/ curfile, 20); fprintf(stderr, "\r%s%4u%% ", buf, ratio); free(buf); } |