aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlrich Sibiller <uli42@gmx.de>2024-05-07 23:37:15 +0200
committerUlrich Sibiller <uli42@gmx.de>2024-05-20 01:26:19 +0200
commit2fd776888346797a085ca493d111fbac791cb461 (patch)
tree360b801084f621d002c3c816f1c1a55f2b8bb25b
parent4a680cf8c091828ee78a7a7a18daa7069df932b9 (diff)
downloadnx-libs-2fd776888346797a085ca493d111fbac791cb461.tar.gz
nx-libs-2fd776888346797a085ca493d111fbac791cb461.tar.bz2
nx-libs-2fd776888346797a085ca493d111fbac791cb461.zip
Window.c: Fix: Use correct type for XlibWindow
These are filled by libX11 so the type must be the Xlib one.
-rw-r--r--nx-X11/programs/Xserver/hw/nxagent/Window.c6
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 c18ebde97..1efe491e3 100644
--- a/nx-X11/programs/Xserver/hw/nxagent/Window.c
+++ b/nx-X11/programs/Xserver/hw/nxagent/Window.c
@@ -1401,9 +1401,9 @@ void nxagentConfigureWindow(WindowPtr pWin, unsigned int mask)
#ifdef TEST
{
- Window root_return;
- Window parent_return;
- Window *children_return = NULL;
+ XlibWindow root_return;
+ XlibWindow parent_return;
+ XlibWindow *children_return = NULL;
unsigned int nchildren_return;
Status result = XQueryTree(nxagentDisplay, DefaultRootWindow(nxagentDisplay),