Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Steve Lhomme
VLC
Commits
c1c58444
Commit
c1c58444
authored
Nov 23, 2005
by
Christophe Massiot
Browse files
* src/input/input.c: Please use strtol instead of atoi for 0x syntax
support.
parent
0323f14d
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/input/input.c
View file @
c1c58444
...
...
@@ -2450,7 +2450,7 @@ static void ParseOption( input_thread_t *p_input, const char *psz_option )
break
;
case
VLC_VAR_INTEGER
:
val
.
i_int
=
a
to
i
(
psz_value
);
val
.
i_int
=
str
to
l
(
psz_value
,
NULL
,
0
);
break
;
case
VLC_VAR_FLOAT
:
...
...
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