Fix printing of PC_COUNT perf counters

This commit is contained in:
px4dev 2013-07-04 23:14:13 -07:00
parent 2e001aad04
commit f7963a8c84
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ define _perf_print
# PC_COUNT
if $hdr->type == 0
set $count = (struct perf_ctr_count *)$hdr
printf "%llu events,\n", $count->event_count;
printf "%llu events\n", $count->event_count
end
# PC_ELPASED
if $hdr->type == 1