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
fd463225
Commit
fd463225
authored
Dec 03, 2010
by
Rémi Duraffort
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
logger: use var_inherit.
parent
efa1666a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
modules/misc/logger.c
modules/misc/logger.c
+2
-2
No files found.
modules/misc/logger.c
View file @
fd463225
...
...
@@ -369,9 +369,9 @@ static void Close( vlc_object_t *p_this )
static
void
Overflow
(
msg_cb_data_t
*
p_sys
,
msg_item_t
*
p_item
,
unsigned
overruns
)
{
VLC_UNUSED
(
overruns
);
int
verbosity
=
var_
CreateGe
tInteger
(
p_sys
->
p_intf
,
"log-verbose"
);
int
verbosity
=
var_
Inheri
tInteger
(
p_sys
->
p_intf
,
"log-verbose"
);
if
(
verbosity
==
-
1
)
verbosity
=
var_
CreateGe
tInteger
(
p_sys
->
p_intf
,
"verbose"
);
verbosity
=
var_
Inheri
tInteger
(
p_sys
->
p_intf
,
"verbose"
);
switch
(
p_item
->
i_type
)
{
...
...
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