libbb unicode: comment out usused function and unused parameter
Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
@@ -1107,16 +1107,17 @@ char* FAST_FUNC unicode_conv_to_printable(uni_stat_t *stats, const char *src)
|
||||
{
|
||||
return unicode_conv_to_printable2(stats, src, INT_MAX, 0);
|
||||
}
|
||||
char* FAST_FUNC unicode_conv_to_printable_fixedwidth(/*uni_stat_t *stats,*/ const char *src, unsigned width)
|
||||
{
|
||||
return unicode_conv_to_printable2(/*stats:*/ NULL, src, width, UNI_FLAG_PAD);
|
||||
}
|
||||
|
||||
#ifdef UNUSED
|
||||
char* FAST_FUNC unicode_conv_to_printable_maxwidth(uni_stat_t *stats, const char *src, unsigned maxwidth)
|
||||
{
|
||||
return unicode_conv_to_printable2(stats, src, maxwidth, 0);
|
||||
}
|
||||
char* FAST_FUNC unicode_conv_to_printable_fixedwidth(uni_stat_t *stats, const char *src, unsigned width)
|
||||
{
|
||||
return unicode_conv_to_printable2(stats, src, width, UNI_FLAG_PAD);
|
||||
}
|
||||
|
||||
#ifdef UNUSED
|
||||
unsigned FAST_FUNC unicode_padding_to_width(unsigned width, const char *src)
|
||||
{
|
||||
if (unicode_status != UNICODE_ON) {
|
||||
|
Reference in New Issue
Block a user