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
553b96f0
Commit
553b96f0
authored
Mar 08, 2018
by
Ulrich Sibiller
Committed by
Mike Gabriel
Aug 22, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Events.c: fix wrong printf format specifiers
parent
2fe89c5b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
Events.c
nx-X11/programs/Xserver/hw/nxagent/Events.c
+4
-4
No files found.
nx-X11/programs/Xserver/hw/nxagent/Events.c
View file @
553b96f0
...
...
@@ -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 [%l
d].
\n
"
,
nxagentWindow
(
pWin
),
" for window [%
d] - rects [%
d].
\n
"
,
nxagentWindow
(
pWin
),
RegionNumRects
(
nxagentExposeQueueHead
.
remoteRegion
));
#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