Commit 553b96f0 authored by Ulrich Sibiller's avatar Ulrich Sibiller Committed by Mike Gabriel

Events.c: fix wrong printf format specifiers

parent 2fe89c5b
...@@ -2500,7 +2500,7 @@ FIXME: This can be maybe optimized by consuming the ...@@ -2500,7 +2500,7 @@ FIXME: This can be maybe optimized by consuming the
nxagentExposeQueue.exposures[index].remoteRegion, &sum); nxagentExposeQueue.exposures[index].remoteRegion, &sum);
#ifdef TEST #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); nxagentWindow(pWin), index);
#endif #endif
...@@ -2520,7 +2520,7 @@ FIXME: This can be maybe optimized by consuming the ...@@ -2520,7 +2520,7 @@ FIXME: This can be maybe optimized by consuming the
nxagentSplashCount == 1 && X -> xexpose.count == 0) nxagentSplashCount == 1 && X -> xexpose.count == 0)
{ {
#ifdef DEBUG #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); nxagentWindowPriv(nxagentRootTileWindow) -> window);
#endif #endif
...@@ -2759,7 +2759,7 @@ int nxagentHandleClientMessageEvent(XEvent *X, enum HandleEventResult *result) ...@@ -2759,7 +2759,7 @@ int nxagentHandleClientMessageEvent(XEvent *X, enum HandleEventResult *result)
else else
{ {
#ifdef TEST #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 #endif
if (X -> xclient.window == nxagentIconWindow) if (X -> xclient.window == nxagentIconWindow)
...@@ -4127,7 +4127,7 @@ void nxagentSynchronizeExpose(void) ...@@ -4127,7 +4127,7 @@ void nxagentSynchronizeExpose(void)
{ {
#ifdef TEST #ifdef TEST
fprintf(stderr, "nxagentSynchronizeExpose: Going to call miWindowExposures" 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)); RegionNumRects(nxagentExposeQueueHead.remoteRegion));
#endif #endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment