Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-2-2
Commits
899a6313
Commit
899a6313
authored
Nov 24, 2010
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Win32: fix a few warnings
parent
28d721cc
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
src/network/poll.c
src/network/poll.c
+3
-3
No files found.
src/network/poll.c
View file @
899a6313
...
@@ -112,11 +112,11 @@ resume:
...
@@ -112,11 +112,11 @@ resume:
* is yet to support it.
* is yet to support it.
*/
*/
if
(
fds
[
i
].
events
&
POLLIN
)
if
(
fds
[
i
].
events
&
POLLIN
)
FD_SET
(
fd
,
&
rdset
);
FD_SET
(
(
SOCKET
)
fd
,
rdset
);
if
(
fds
[
i
].
events
&
POLLOUT
)
if
(
fds
[
i
].
events
&
POLLOUT
)
FD_SET
(
fd
,
&
wrset
);
FD_SET
(
(
SOCKET
)
fd
,
wrset
);
if
(
fds
[
i
].
events
&
POLLPRI
)
if
(
fds
[
i
].
events
&
POLLPRI
)
FD_SET
(
fd
,
&
exset
);
FD_SET
(
(
SOCKET
)
fd
,
exset
);
}
}
#ifndef HAVE_ALERTABLE_SELECT
#ifndef HAVE_ALERTABLE_SELECT
...
...
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