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:
Josh Poimboeuf 2014-03-13 12:22:01 -05:00
parent 3acf30c0c8
commit 72af45502f
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}