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 /networking/udhcp | |
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 'networking/udhcp')
-rw-r--r-- | networking/udhcp/dumpleases.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/networking/udhcp/dumpleases.c b/networking/udhcp/dumpleases.c index a15e409..21d62a2 100644 --- a/networking/udhcp/dumpleases.c +++ b/networking/udhcp/dumpleases.c @@ -57,7 +57,7 @@ int dumpleases_main(int argc UNUSED_PARAM, char **argv) addr.s_addr = lease.lease_nip; #if ENABLE_UNICODE_SUPPORT { - char *uni_name = unicode_conv_to_printable_fixedwidth(NULL, lease.hostname, 19); + char *uni_name = unicode_conv_to_printable_fixedwidth(/*NULL,*/ lease.hostname, 19); printf(" %-16s%s ", inet_ntoa(addr), uni_name); free(uni_name); } |