aboutsummaryrefslogtreecommitdiff
path: root/coreutils
diff options
context:
space:
mode:
authorDenys Vlasenko <dvlasenk@redhat.com>2011-01-11 13:08:28 +0100
committerDenys Vlasenko <dvlasenk@redhat.com>2011-01-11 13:08:28 +0100
commitdc7e5c46b0204bc3489ee961a631fb00533ae597 (patch)
treebebc35d178b4ceda516e05fa84b967cd461d5399 /coreutils
parent5a163b26451c591187482f99659e5fe639a0616a (diff)
downloadbusybox-dc7e5c46b0204bc3489ee961a631fb00533ae597.tar.gz
libbb unicode: comment out usused function and unused parameter
Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
Diffstat (limited to 'coreutils')
-rw-r--r--coreutils/cal.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/cal.c b/coreutils/cal.c
index ef5dbeadb..f18c16120 100644
--- a/coreutils/cal.c
+++ b/coreutils/cal.c
@@ -138,7 +138,7 @@ int cal_main(int argc UNUSED_PARAM, char **argv)
if (julian)
*hp++ = ' ';
{
- char *two_wchars = unicode_conv_to_printable_fixedwidth(NULL, buf, 2);
+ char *two_wchars = unicode_conv_to_printable_fixedwidth(/*NULL,*/ buf, 2);
strcpy(hp, two_wchars);
free(two_wchars);
}