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
519a81a2
Commit
519a81a2
authored
Sep 02, 2008
by
Pierre d'Herbemont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
messages: Fix a warning.
parent
ce2e6d1f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
src/misc/messages.c
src/misc/messages.c
+2
-2
No files found.
src/misc/messages.c
View file @
519a81a2
...
...
@@ -144,7 +144,7 @@ void __msg_EnableObjectPrinting (vlc_object_t *p_this, char * psz_object)
if
(
!
strcmp
(
psz_object
,
"all"
)
)
priv
->
msg_all_objects_enabled
=
true
;
else
vlc_dictionary_insert
(
&
priv
->
msg_enabled_objects
,
psz_object
,
kObjectPrintingEnabled
);
vlc_dictionary_insert
(
&
priv
->
msg_enabled_objects
,
psz_object
,
(
void
*
)
kObjectPrintingEnabled
);
vlc_mutex_unlock
(
&
QUEUE
.
lock
);
}
...
...
@@ -155,7 +155,7 @@ void __msg_DisableObjectPrinting (vlc_object_t *p_this, char * psz_object)
if
(
!
strcmp
(
psz_object
,
"all"
)
)
priv
->
msg_all_objects_enabled
=
false
;
else
vlc_dictionary_insert
(
&
priv
->
msg_enabled_objects
,
psz_object
,
kObjectPrintingDisabled
);
vlc_dictionary_insert
(
&
priv
->
msg_enabled_objects
,
psz_object
,
(
void
*
)
kObjectPrintingDisabled
);
vlc_mutex_unlock
(
&
QUEUE
.
lock
);
}
...
...
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