diff options
author | Ulrich Sibiller <uli42@gmx.de> | 2024-03-28 10:43:25 +0100 |
---|---|---|
committer | Ulrich Sibiller <uli42@gmx.de> | 2024-03-28 10:43:25 +0100 |
commit | 1cef3ac4f8dfe44cc23e87b59b2b9f9b73db5cbf (patch) | |
tree | 1ae340bdec969f8e86413ab0eaf0fcc6fc498d71 /nx-X11/programs/Xserver/hw/nxagent | |
parent | f326d0461b17ea434f87bafde56e3dbcc78b8c54 (diff) | |
download | nx-libs-1cef3ac4f8dfe44cc23e87b59b2b9f9b73db5cbf.tar.gz nx-libs-1cef3ac4f8dfe44cc23e87b59b2b9f9b73db5cbf.tar.bz2 nx-libs-1cef3ac4f8dfe44cc23e87b59b2b9f9b73db5cbf.zip |
Pixmap.c: fix fprintf call
Due to the , the second line was taken as the first argument leading to weird output.
Diffstat (limited to 'nx-X11/programs/Xserver/hw/nxagent')
-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 1bf3fbbc0..5f22640b6 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 |