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
057e689f
Commit
057e689f
authored
Feb 12, 2007
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix minor errors
parent
c0b2d638
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
include/vlc_network.h
include/vlc_network.h
+1
-1
src/network/poll.c
src/network/poll.c
+3
-3
No files found.
include/vlc_network.h
View file @
057e689f
...
@@ -146,7 +146,7 @@ enum
...
@@ -146,7 +146,7 @@ enum
{
{
POLLIN
=
1
,
POLLIN
=
1
,
POLLOUT
=
2
,
POLLOUT
=
2
,
POLLPRI
=
4
POLLPRI
=
4
,
POLLERR
=
8
,
// unsupported stub
POLLERR
=
8
,
// unsupported stub
POLLHUP
=
16
,
// unsupported stub
POLLHUP
=
16
,
// unsupported stub
POLLNVAL
=
32
// unsupported stub
POLLNVAL
=
32
// unsupported stub
...
...
src/network/poll.c
View file @
057e689f
...
@@ -69,9 +69,9 @@ int poll (struct pollfd *fds, unsigned nfds, int timeout)
...
@@ -69,9 +69,9 @@ int poll (struct pollfd *fds, unsigned nfds, int timeout)
for
(
unsigned
i
=
0
;
i
<
nfds
;
i
++
)
for
(
unsigned
i
=
0
;
i
<
nfds
;
i
++
)
{
{
int
fd
=
fds
[
i
].
fd
;
int
fd
=
fds
[
i
].
fd
;
fds
[
i
].
revents
=
(
FD_ISSET
(
fd
s
[
i
].
fd
,
&
rdset
)
?
POLLIN
:
0
)
fds
[
i
].
revents
=
(
FD_ISSET
(
fd
,
&
rdset
)
?
POLLIN
:
0
)
|
(
FD_ISSET
(
fd
s
[
i
].
fd
,
&
wrset
)
?
POLLOUT
:
0
)
|
(
FD_ISSET
(
fd
,
&
wrset
)
?
POLLOUT
:
0
)
|
(
FD_ISSET
(
fd
s
[
i
].
fd
,
&
exset
)
?
POLLPRI
:
0
);
|
(
FD_ISSET
(
fd
,
&
exset
)
?
POLLPRI
:
0
);
}
}
return
val
;
return
val
;
}
}
...
...
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