diff options
author | Ulrich Sibiller <uli42@gmx.de> | 2024-03-28 22:03:53 +0100 |
---|---|---|
committer | Ulrich Sibiller <uli42@gmx.de> | 2024-03-28 22:03:53 +0100 |
commit | 77477916ec895495a96ddfae0392d936710441da (patch) | |
tree | f384b069245acd0c72e2617522473b5a5063fa6e | |
parent | 6785c933e83b1881b15e41115740a6cc066f4512 (diff) | |
download | nx-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.c | 2 |
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 |