diff options
author | Ulrich Sibiller <uli42@gmx.de> | 2018-01-05 01:51:02 +0100 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2018-02-05 12:47:46 +0100 |
commit | 7db6cff1cd9f4f7c7ae8b34866dd921bddf31642 (patch) | |
tree | 4425126f0e53713d613274f209494be9e51534d7 /nx-X11/programs/Xserver/hw/nxagent | |
parent | ffc363c54398ce24419d6e8dc15f054213aa0645 (diff) | |
download | nx-libs-7db6cff1cd9f4f7c7ae8b34866dd921bddf31642.tar.gz nx-libs-7db6cff1cd9f4f7c7ae8b34866dd921bddf31642.tar.bz2 nx-libs-7db6cff1cd9f4f7c7ae8b34866dd921bddf31642.zip |
Window.c: fix TEST/DEBUG output
Diffstat (limited to 'nx-X11/programs/Xserver/hw/nxagent')
-rw-r--r-- | nx-X11/programs/Xserver/hw/nxagent/Window.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/nx-X11/programs/Xserver/hw/nxagent/Window.c b/nx-X11/programs/Xserver/hw/nxagent/Window.c index 1cad4ca03..977b955a6 100644 --- a/nx-X11/programs/Xserver/hw/nxagent/Window.c +++ b/nx-X11/programs/Xserver/hw/nxagent/Window.c @@ -283,7 +283,7 @@ Bool nxagentCreateWindow(pWin) nxagentClearSplash(nxagentRootTileWindow); } #ifdef NXAGENT_LOGO_DEBUG - fprintf(stderr, "nxagentSplashCount: %d\n", nxagentSplashCount); + fprintf(stderr, "nxagentCreateWindow: nxagentSplashCount [%d]\n", nxagentSplashCount); #endif if (pWin->drawable.class == InputOnly) { @@ -303,7 +303,7 @@ Bool nxagentCreateWindow(pWin) attributes.backing_store = NotUseful; #ifdef TEST - fprintf(stderr, "nxagentCreateWindow: Backing store on window at %p is %d.\n", + fprintf(stderr, "nxagentCreateWindow: Backing store on window at [%p] is [%d].\n", (void*)pWin, attributes.backing_store); #endif @@ -2865,7 +2865,7 @@ Bool nxagentSetWindowCursors(void *p0) } #ifdef NXAGENT_RECONNECT_WINDOW_DEBUG - fprintf(stderr, "nxagentLoopOverWindows: All cursors configured.\n"); + fprintf(stderr, "nxagentSetWindowCursors: All cursors configured.\n"); #endif nxagentReDisplayCurrentCursor(); |