Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
O
ortp
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
3
Issues
3
List
Board
Labels
Milestones
Merge Requests
2
Merge Requests
2
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
External Wiki
External Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
BC
public
ortp
Commits
601c9750
Commit
601c9750
authored
Jan 30, 2017
by
Sylvain Berfini
🎩
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix ISO C90 compil
parent
6b63bd2d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
event.c
src/event.c
+2
-1
No files found.
src/event.c
View file @
601c9750
...
...
@@ -166,10 +166,11 @@ void ortp_ev_dispatcher_disconnect(OrtpEvDispatcher *d
,
OrtpEventType
type
,
rtcp_type_t
subtype
,
OrtpEvDispatcherCb
cb
)
{
OList
*
it
=
NULL
;
if
(
!
d
)
{
return
;
}
OList
*
it
=
d
->
cbs
;
it
=
d
->
cbs
;
while
(
it
)
{
OrtpEvDispatcherData
*
data
=
(
OrtpEvDispatcherData
*
)
it
->
data
;
if
(
data
&&
data
->
type
==
type
&&
data
->
subtype
==
subtype
&&
data
->
on_found
==
cb
)
{
...
...
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