Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
N
nx-libs
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
1
Issues
1
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
dimbor
nx-libs
Commits
832e0281
Commit
832e0281
authored
May 25, 2020
by
Ulrich Sibiller
Committed by
Mike Gabriel
Oct 17, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
NXwindow.c: fix some format specifiers
parent
601a5784
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
6 deletions
+5
-6
NXwindow.c
nx-X11/programs/Xserver/hw/nxagent/NXwindow.c
+5
-6
No files found.
nx-X11/programs/Xserver/hw/nxagent/NXwindow.c
View file @
832e0281
...
...
@@ -149,7 +149,7 @@ InitRootWindow(WindowPtr pWin)
if
(
nxagentOption
(
Rootless
))
{
#ifdef TEST
fprintf
(
stderr
,
"InitRootWindow: Assigned agent root to window at [%p][%
l
d] with parent [%p].
\n
"
,
fprintf
(
stderr
,
"InitRootWindow: Assigned agent root to window at [%p][%d] with parent [%p].
\n
"
,
(
void
*
)
pWin
,
nxagentWindowPriv
(
pWin
)
->
window
,
(
void
*
)
pWin
->
parent
);
#endif
...
...
@@ -381,13 +381,12 @@ ConfigureWindow(register WindowPtr pWin, register Mask mask, XID *vlist, ClientP
#ifdef TEST
if
(
nxagentWindowTopLevel
(
pWin
))
{
fprintf
(
stderr
,
"ConfigureWindow: pWin [%p] mask [%lu] client [%p]
\n
"
,
pWin
,
mask
,
client
);
fprintf
(
stderr
,
"ConfigureWindow: pWin [%p] mask [%u] client [%p]
\n
"
,
(
void
*
)
pWin
,
mask
,
(
void
*
)
client
);
fprintf
(
stderr
,
"ConfigureWindow: x [%d] y [%d] w [%d] h [%d] CWStackMode [%d] "
"smode [%d] pSib [%p]
\n
"
,
x
,
y
,
w
,
h
,
(
mask
&
CWStackMode
)
?
1
:
0
,
smode
,
pSib
);
x
,
y
,
w
,
h
,
(
mask
&
CWStackMode
)
?
1
:
0
,
smode
,
(
void
*
)
pSib
);
}
#endif
...
...
@@ -683,7 +682,7 @@ MapWindow(register WindowPtr pWin, ClientPtr client)
#ifdef TEST
if
(
nxagentWindowTopLevel
(
pWin
))
{
fprintf
(
stderr
,
"MapWindow: pWin [%p] client [%p]
\n
"
,
pWin
,
client
);
fprintf
(
stderr
,
"MapWindow: pWin [%p] client [%p]
\n
"
,
(
void
*
)
pWin
,
(
void
*
)
client
);
}
#endif
#endif
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment