From d3b3393903920ddfc872f0c9a8223e885129d88f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=B8ren=20Sandmann=20Pedersen?= Date: Sun, 22 Feb 2009 04:29:09 -0500 Subject: [PATCH] Add percent signs in screenshot window --- sysprof.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sysprof.c b/sysprof.c index 9e87341e..c789de2e 100644 --- a/sysprof.c +++ b/sysprof.c @@ -1103,7 +1103,8 @@ add_text (GtkTreeView *view, for (i = 0; i < indent; ++i) g_string_append_c (info->text, ' '); - g_string_append_printf (info->text, "%-*s %6.2f %6.2f\n", info->max_width - indent, name, self, cumulative); + g_string_append_printf (info->text, "%-*s %6.2f%% %6.2f%%\n", + info->max_width - indent, name, self, cumulative); g_free (name); }