aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlrich Sibiller <uli42@gmx.de>2024-03-28 22:03:53 +0100
committerUlrich Sibiller <uli42@gmx.de>2024-03-28 22:03:53 +0100
commit77477916ec895495a96ddfae0392d936710441da (patch)
treef384b069245acd0c72e2617522473b5a5063fa6e
parent6785c933e83b1881b15e41115740a6cc066f4512 (diff)
downloadnx-libs-77477916ec895495a96ddfae0392d936710441da.tar.gz
nx-libs-77477916ec895495a96ddfae0392d936710441da.tar.bz2
nx-libs-77477916ec895495a96ddfae0392d936710441da.zip
Pixmap.c: add missing [] to TEST output
-rw-r--r--nx-X11/programs/Xserver/hw/nxagent/Pixmap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/nx-X11/programs/Xserver/hw/nxagent/Pixmap.c b/nx-X11/programs/Xserver/hw/nxagent/Pixmap.c
index f7be2207d..153b75f8f 100644
--- a/nx-X11/programs/Xserver/hw/nxagent/Pixmap.c
+++ b/nx-X11/programs/Xserver/hw/nxagent/Pixmap.c
@@ -244,7 +244,7 @@ PixmapPtr nxagentCreatePixmap(ScreenPtr pScreen, int width, int height,
}
#ifdef TEST
- fprintf(stderr, "nxagentCreatePixmap: Allocated memory for the Virtual %sPixmap %p of real Pixmap %p (%dx%d),"
+ fprintf(stderr, "nxagentCreatePixmap: Allocated memory for the Virtual %sPixmap [%p] of real Pixmap [%p] (%dx%d),"
"allocation hint [%d].\n",
nxagentShmPixmapTrap ? "Shm " : "", (void *) pVirtual, (void *) pPixmap, width, height, usage_hint);
#endif