signal: use print_xlat_ex in print_sa_handler

* signal.c (print_sa_handler): Call print_xlat_ex instead of tprints
in order to respect current xlat style setting.
This commit is contained in:
Eugene Syromyatnikov 2018-04-04 15:51:36 +02:00 committed by Dmitry V. Levin
parent 037802b576
commit 604af7aca4

View File

@ -117,7 +117,7 @@ print_sa_handler(kernel_ulong_t handler)
const char *sa_handler_str = get_sa_handler_str(handler);
if (sa_handler_str)
tprints(sa_handler_str);
print_xlat_ex(handler, sa_handler_str, XLAT_STYLE_DEFAULT);
else
printaddr(handler);
}