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
2fe89c5b
Commit
2fe89c5b
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 compiler warnings
format ‘%p’ expects argument of type ‘void *’
parent
f8e76fd6
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
Events.c
nx-X11/programs/Xserver/hw/nxagent/Events.c
+3
-3
No files found.
nx-X11/programs/Xserver/hw/nxagent/Events.c
View file @
2fe89c5b
...
...
@@ -1636,7 +1636,7 @@ FIXME: Don't enqueue the KeyRelease event if the key was
#ifdef TEST
fprintf
(
stderr
,
"nxagentDispatchEvents: nxagentLastEnteredTopLevelWindow [%p].
\n
"
,
nxagentLastEnteredTopLevelWindow
);
(
void
*
)
nxagentLastEnteredTopLevelWindow
);
#endif
}
...
...
@@ -4346,7 +4346,7 @@ int nxagentClipAndSendExpose(WindowPtr pWin, void * ptr)
box
=
*
RegionExtents
(
&
pWin
->
clipList
);
fprintf
(
stderr
,
"nxagentClipAndSendExpose: Clip list extents for window at [%p]: [%d] [%d] [%d] [%d].
\n
"
,
pWin
,
box
.
x1
,
box
.
y1
,
box
.
x2
,
box
.
y2
);
(
void
*
)
pWin
,
box
.
x1
,
box
.
y1
,
box
.
x2
,
box
.
y2
);
#endif
RegionIntersect
(
exposeRgn
,
remoteExposeRgn
,
&
pWin
->
clipList
);
...
...
@@ -4355,7 +4355,7 @@ int nxagentClipAndSendExpose(WindowPtr pWin, void * ptr)
{
#ifdef DEBUG
fprintf
(
stderr
,
"nxagentClipAndSendExpose: Forwarding expose to window at [%p] pWin.
\n
"
,
pWin
);
(
void
*
)
pWin
);
#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