diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2015-10-24 04:19:56 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2015-10-24 04:19:56 +0200 |
commit | 941e7a491971574e5d06227f8dc63806335b8745 (patch) | |
tree | 458cea7f274c373554423de9cb29e93362eef6d9 /modutils | |
parent | cd13974b201972ffb605e243f63f674e95b99e5c (diff) | |
download | busybox-941e7a491971574e5d06227f8dc63806335b8745.tar.gz |
reuse a string
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'modutils')
-rw-r--r-- | modutils/modprobe.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modutils/modprobe.c b/modutils/modprobe.c index 952ba0377..05bf02cf8 100644 --- a/modutils/modprobe.c +++ b/modutils/modprobe.c @@ -461,7 +461,7 @@ static int do_modprobe(struct module_entry *m) rc = bb_delete_module(m2->modname, O_EXCL); if (rc) { if (first) { - bb_perror_msg("can't unload module %s", + bb_perror_msg("can't unload module '%s'", humanly_readable_name(m2)); break; } |