diff options
author | Ulrich Sibiller <uli42@gmx.de> | 2024-03-28 21:32:36 +0100 |
---|---|---|
committer | Ulrich Sibiller <uli42@gmx.de> | 2024-03-28 21:44:05 +0100 |
commit | 6785c933e83b1881b15e41115740a6cc066f4512 (patch) | |
tree | 70d5ac75d63b3e05b33b72c8a0f40382d32679b8 /nx-X11/programs/Xserver/hw/nxagent/Pixmap.c | |
parent | ade8d6123c27866525fc7f7d4327e10af0d2d01a (diff) | |
download | nx-libs-6785c933e83b1881b15e41115740a6cc066f4512.tar.gz nx-libs-6785c933e83b1881b15e41115740a6cc066f4512.tar.bz2 nx-libs-6785c933e83b1881b15e41115740a6cc066f4512.zip |
Screen.c, Pixmap.c: silence some compiler warnings
Diffstat (limited to 'nx-X11/programs/Xserver/hw/nxagent/Pixmap.c')
-rw-r--r-- | nx-X11/programs/Xserver/hw/nxagent/Pixmap.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/nx-X11/programs/Xserver/hw/nxagent/Pixmap.c b/nx-X11/programs/Xserver/hw/nxagent/Pixmap.c index 5f22640b6..f7be2207d 100644 --- a/nx-X11/programs/Xserver/hw/nxagent/Pixmap.c +++ b/nx-X11/programs/Xserver/hw/nxagent/Pixmap.c @@ -611,7 +611,7 @@ int nxagentDestroyNewPixmapResourceType(void * p, XID id) */ #ifdef TEST - fprintf(stderr, "nxagentDestroyNewPixmapResourceType: Destroying mirror id [%ld] for pixmap at [%p].\n", + fprintf(stderr, "nxagentDestroyNewPixmapResourceType: Destroying mirror id [%u] for pixmap at [%p].\n", nxagentPixmapPriv((PixmapPtr) p) -> mid, (void *) p); #endif @@ -630,7 +630,7 @@ void nxagentDisconnectPixmap(void *p0, XID x1, void *p2) fprintf(stderr, "nxagentDisconnectPixmap: Called with bool [%d] and pixmap at [%p].\n", *pBool, (void *) pPixmap); - fprintf(stderr, "nxagentDisconnectPixmap: Virtual pixmap is [%ld].\n", + fprintf(stderr, "nxagentDisconnectPixmap: Virtual pixmap is [%u].\n", nxagentPixmap(pPixmap)); #endif @@ -757,7 +757,7 @@ void nxagentReconnectPixmap(void *p0, XID x1, void *p2) nxagentPixmap(pPixmapPriv -> pVirtualPixmap) = pPixmapPriv -> id; #ifdef TEST - fprintf(stderr, "nxagentReconnectPixmap: Created virtual pixmap with id [%ld] for pixmap at [%p].\n", + fprintf(stderr, "nxagentReconnectPixmap: Created virtual pixmap with id [%u] for pixmap at [%p].\n", nxagentPixmap(pPixmap), (void *) pPixmap); #endif |