mirror of https://github.com/dynup/kpatch
make the changed function output more readable
This makes it much easier to spot which functions have changed, especially when there are more than one of them.
This commit is contained in:
parent
3acf30c0c8
commit
72af45502f
|
@ -837,7 +837,7 @@ void kpatch_include_changed_functions(struct kpatch_elf *kelf)
|
|||
if (sym->status == CHANGED &&
|
||||
sym->type == STT_FUNC &&
|
||||
!sym->include) {
|
||||
log_normal("function %s has changed\n", sym->name);
|
||||
log_normal("changed function: %s\n", sym->name);
|
||||
kpatch_include_symbol(sym, 0);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue