From a3eab2e96820bbad3e9fea399e64d57f96ad4717 Mon Sep 17 00:00:00 2001 From: Chase Date: Wed, 5 Nov 2025 16:38:13 -0500 Subject: [PATCH] exa.c: 0x prefix is superfluous --- exa/exa.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exa/exa.c b/exa/exa.c index f71bc554f..d0d553017 100644 --- a/exa/exa.c +++ b/exa/exa.c @@ -398,7 +398,7 @@ exaFinishAccess(DrawablePtr pDrawable, int index) /* Catch unbalanced Prepare/FinishAccess calls. */ if (i == EXA_NUM_PREPARE_INDICES) - EXA_FatalErrorDebugWithRet(("EXA bug: FinishAccess called without PrepareAccess for pixmap 0x%p.\n", (void *)pPixmap),); + EXA_FatalErrorDebugWithRet(("EXA bug: FinishAccess called without PrepareAccess for pixmap %p.\n", (void *)pPixmap),); pExaScr->access[i].pixmap = NULL;