diff options
author | Ulrich Sibiller <uli42@gmx.de> | 2024-05-01 15:17:19 +0200 |
---|---|---|
committer | Ulrich Sibiller <uli42@gmx.de> | 2024-05-11 18:53:27 +0200 |
commit | c1365bbfbb6ae2a06ff5ce993c788805c984eb14 (patch) | |
tree | 36c072a7e0fd25fe45cb5bbbaee2b3153e1260f2 | |
parent | cc9922e1ea4ad827331e49426bda276c0037dfd8 (diff) | |
download | nx-libs-c1365bbfbb6ae2a06ff5ce993c788805c984eb14.tar.gz nx-libs-c1365bbfbb6ae2a06ff5ce993c788805c984eb14.tar.bz2 nx-libs-c1365bbfbb6ae2a06ff5ce993c788805c984eb14.zip |
Pixmap.c: fix 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 153b75f8f..addc81b79 100644 --- a/nx-X11/programs/Xserver/hw/nxagent/Pixmap.c +++ b/nx-X11/programs/Xserver/hw/nxagent/Pixmap.c @@ -245,7 +245,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)," - "allocation hint [%d].\n", + " allocation hint [%d].\n", nxagentShmPixmapTrap ? "Shm " : "", (void *) pVirtual, (void *) pPixmap, width, height, usage_hint); #endif |