diff options
author | Ulrich Sibiller <uli42@gmx.de> | 2018-03-08 22:29:53 +0100 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2018-08-22 15:36:55 +0200 |
commit | 553b96f0551d660d0700de49da880cf99d9c9168 (patch) | |
tree | 4acfed1ff0baad8f623109211cca44ef4905e89b /nx-X11 | |
parent | 2fe89c5bf1ede82097ffcf1a9695b8df21c714ba (diff) | |
download | nx-libs-553b96f0551d660d0700de49da880cf99d9c9168.tar.gz nx-libs-553b96f0551d660d0700de49da880cf99d9c9168.tar.bz2 nx-libs-553b96f0551d660d0700de49da880cf99d9c9168.zip |
Events.c: fix wrong printf format specifiers
Diffstat (limited to 'nx-X11')
-rw-r--r-- | nx-X11/programs/Xserver/hw/nxagent/Events.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/nx-X11/programs/Xserver/hw/nxagent/Events.c b/nx-X11/programs/Xserver/hw/nxagent/Events.c index 8fe4e1ffc..a1376092d 100644 --- a/nx-X11/programs/Xserver/hw/nxagent/Events.c +++ b/nx-X11/programs/Xserver/hw/nxagent/Events.c @@ -2500,7 +2500,7 @@ FIXME: This can be maybe optimized by consuming the nxagentExposeQueue.exposures[index].remoteRegion, &sum); #ifdef TEST - fprintf(stderr, "nxagentHandleExposeEvent: Added region for window [%ld] to position [%d].\n", + fprintf(stderr, "nxagentHandleExposeEvent: Added region for window [%u] to position [%d].\n", nxagentWindow(pWin), index); #endif @@ -2520,7 +2520,7 @@ FIXME: This can be maybe optimized by consuming the nxagentSplashCount == 1 && X -> xexpose.count == 0) { #ifdef DEBUG - fprintf(stderr, "nxagentHandleExposeEvent: Clearing root tile window id [%ld].\n", + fprintf(stderr, "nxagentHandleExposeEvent: Clearing root tile window id [%u].\n", nxagentWindowPriv(nxagentRootTileWindow) -> window); #endif @@ -2759,7 +2759,7 @@ int nxagentHandleClientMessageEvent(XEvent *X, enum HandleEventResult *result) else { #ifdef TEST - fprintf(stderr, "Events: WM_DELETE_WINDOW arrived Atom = %ld.\n", wmAtom); + fprintf(stderr, "Events: WM_DELETE_WINDOW arrived Atom = %u.\n", wmAtom); #endif if (X -> xclient.window == nxagentIconWindow) @@ -4127,7 +4127,7 @@ void nxagentSynchronizeExpose(void) { #ifdef TEST fprintf(stderr, "nxagentSynchronizeExpose: Going to call miWindowExposures" - " for window [%ld] - rects [%ld].\n", nxagentWindow(pWin), + " for window [%d] - rects [%d].\n", nxagentWindow(pWin), RegionNumRects(nxagentExposeQueueHead.remoteRegion)); #endif |