From f7963a8c84792ff6d95fa52d92f308c596e309e4 Mon Sep 17 00:00:00 2001 From: px4dev Date: Thu, 4 Jul 2013 23:14:13 -0700 Subject: Fix printing of PC_COUNT perf counters --- Debug/PX4 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Debug/PX4 b/Debug/PX4 index 085cffe43..e99228ee0 100644 --- a/Debug/PX4 +++ b/Debug/PX4 @@ -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 -- cgit v1.2.3