mirror of
https://github.com/varun-r-mallya/sysprof.git
synced 2025-12-31 20:36:25 +00:00
tests: cleanup addr decode output
This commit is contained in:
@ -60,10 +60,15 @@ main (gint argc,
|
||||
sample->addrs[i],
|
||||
&tag);
|
||||
|
||||
g_print ("%u: %s [%s]\n",
|
||||
i,
|
||||
name ? name : "-- missing --",
|
||||
tag ? g_quark_to_string (tag) : "No Tag");
|
||||
if (tag)
|
||||
g_print ("%u: %s [%s]\n",
|
||||
i,
|
||||
name ? name : "-- missing --",
|
||||
g_quark_to_string (tag));
|
||||
else
|
||||
g_print ("%u: %s\n",
|
||||
i,
|
||||
name ? name : "-- missing --");
|
||||
}
|
||||
|
||||
g_print ("======\n");
|
||||
|
||||
Reference in New Issue
Block a user