Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
VLC
Manage
Activity
Members
Labels
Plan
Issues
4k
Issue boards
Milestones
Code
Merge requests
456
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Contributor analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
VideoLAN
VLC
Commits
9bd2469e
Commit
9bd2469e
authored
17 years ago
by
Pierre d'Herbemont
Browse files
Options
Downloads
Patches
Plain Diff
control/event.c: Print the event string description on error, instead of its numerical type.
parent
c1d8551f
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/control/event.c
+2
-3
2 additions, 3 deletions
src/control/event.c
with
2 additions
and
3 deletions
src/control/event.c
+
2
−
3
View file @
9bd2469e
...
...
@@ -31,7 +31,6 @@
* Private functions
*/
/*
* Internal libvlc functions
*/
...
...
@@ -344,6 +343,6 @@ void libvlc_event_detach_lock_state( libvlc_event_manager_t *p_event_manager,
vlc_mutex_unlock
(
&
p_event_manager
->
event_sending_lock
);
libvlc_exception_raise
(
p_e
,
"This object event manager doesn't know about '%
i
,%p,%p' event observer"
,
event_type
,
pf_callback
,
p_user_data
);
"This object event manager doesn't know about '%
s
,%p,%p' event observer"
,
libvlc_
event_type
_name
(
event_type
)
,
pf_callback
,
p_user_data
);
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment