gcov: Don't print 0x with %p
Remove the extra 0x from this message:
[ 0.042561024,5] GCOV: gcov_info_list at 0x0x30481280
Signed-off-by: Reza Arbab <arbab@linux.ibm.com>
diff --git a/core/gcov-profiling.c b/core/gcov-profiling.c
index fdad51e..1c90892 100644
--- a/core/gcov-profiling.c
+++ b/core/gcov-profiling.c
@@ -77,7 +77,7 @@
prlog(PR_WARNING, "GCOV: gcov_info_list doesn't look sane. "
"i->filename == NULL.");
- printf("GCOV: gcov_info_list at 0x%p\n", gcov_info_list);
+ printf("GCOV: gcov_info_list at %p\n", gcov_info_list);
}
void __gcov_merge_add(gcov_type *counters, unsigned int n_counters)