From 488a6b31924ac7b8128c5ac16595b264683455a8 Mon Sep 17 00:00:00 2001 From: Eugene Syromyatnikov Date: Fri, 5 Jan 2018 03:00:45 +0100 Subject: [PATCH] count.c: use personality_names in call_summary report caption Otherwise the title is quite misleading for x32 personality. * count.c (call_summary): Use personality_names. --- count.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/count.c b/count.c index f5e4f12f..5e61d6a2 100644 --- a/count.c +++ b/count.c @@ -236,8 +236,8 @@ call_summary(FILE *outf) set_personality(i); if (i) fprintf(outf, - "System call usage summary for %d bit mode:\n", - current_wordsize * 8); + "System call usage summary for %s mode:\n", + personality_names[i]); call_summary_pers(outf); }