git: 43f704843ba2 - stable/13 - hwpmc: drop 0x before %p printf format string

From: Ed Maste <emaste_at_FreeBSD.org>
Date: Tue, 08 Feb 2022 20:01:08 UTC
The branch stable/13 has been updated by emaste:

URL: https://cgit.FreeBSD.org/src/commit/?id=43f704843ba24c63c487ce329202f9a44f7f83ab

commit 43f704843ba24c63c487ce329202f9a44f7f83ab
Author:     Ed Maste <emaste@FreeBSD.org>
AuthorDate: 2022-01-17 01:27:15 +0000
Commit:     Ed Maste <emaste@FreeBSD.org>
CommitDate: 2022-02-08 20:00:55 +0000

    hwpmc: drop 0x before %p printf format string
    
    %p already includes the 0x.
    
    Sponsored by:   The FreeBSD Foundation
    
    (cherry picked from commit 2075d00fabb6d6a76c4829b9e027a496f04262b0)
---
 sys/dev/hwpmc/hwpmc_core.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys/dev/hwpmc/hwpmc_core.c b/sys/dev/hwpmc/hwpmc_core.c
index a0263c783df5..a1d5b02d0cc5 100644
--- a/sys/dev/hwpmc/hwpmc_core.c
+++ b/sys/dev/hwpmc/hwpmc_core.c
@@ -1077,7 +1077,7 @@ core_intr(struct trapframe *tf)
 	int error, found_interrupt, ri;
 	uint64_t msr;
 
-	PMCDBG3(MDP,INT, 1, "cpu=%d tf=0x%p um=%d", curcpu, (void *) tf,
+	PMCDBG3(MDP,INT, 1, "cpu=%d tf=%p um=%d", curcpu, (void *) tf,
 	    TRAPF_USERMODE(tf));
 
 	found_interrupt = 0;