Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
972e458c
Commit
972e458c
authored
Jun 05, 2010
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Old RC: correct inherited boolean variables
parent
eb2becab
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
modules/control/rc.c
modules/control/rc.c
+3
-3
No files found.
modules/control/rc.c
View file @
972e458c
...
...
@@ -215,7 +215,7 @@ static int Activate( vlc_object_t *p_this )
#ifndef WIN32
#if defined(HAVE_ISATTY)
/* Check that stdin is a TTY */
if
(
!
var_Inherit
Integer
(
p_intf
,
"rc-fake-tty"
)
&&
!
isatty
(
0
)
)
if
(
!
var_Inherit
Bool
(
p_intf
,
"rc-fake-tty"
)
&&
!
isatty
(
0
)
)
{
msg_Warn
(
p_intf
,
"fd 0 is not a TTY"
);
return
VLC_EGENERIC
;
...
...
@@ -329,7 +329,7 @@ static int Activate( vlc_object_t *p_this )
p_intf
->
pf_run
=
Run
;
#ifdef WIN32
p_intf
->
p_sys
->
b_quiet
=
var_Inherit
Integer
(
p_intf
,
"rc-quiet"
);
p_intf
->
p_sys
->
b_quiet
=
var_Inherit
Bool
(
p_intf
,
"rc-quiet"
);
if
(
!
p_intf
->
p_sys
->
b_quiet
)
{
CONSOLE_INTRO_MSG
;
}
#else
CONSOLE_INTRO_MSG
;
...
...
@@ -442,7 +442,7 @@ static void Run( intf_thread_t *p_intf )
playlist_t
*
p_playlist
=
pl_Get
(
p_intf
);
char
p_buffer
[
MAX_LINE_LENGTH
+
1
];
bool
b_showpos
=
var_Inherit
Integer
(
p_intf
,
"rc-show-pos"
);
bool
b_showpos
=
var_Inherit
Bool
(
p_intf
,
"rc-show-pos"
);
bool
b_longhelp
=
false
;
int
i_size
=
0
;
...
...
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