kmod_module: fix log message upon module removal

This commit is contained in:
Lucas De Marchi 2011-12-14 12:07:37 -02:00
parent 7afc98a1f6
commit 63af0615d5
1 changed files with 1 additions and 1 deletions

View File

@ -708,7 +708,7 @@ KMOD_EXPORT int kmod_module_remove_module(struct kmod_module *mod,
err = delete_module(mod->name, flags);
if (err != 0) {
ERR(mod->ctx, "Removing '%s': %s\n", mod->name,
ERR(mod->ctx, "Could not remove '%s': %s\n", mod->name,
strerror(-err));
return err;
}