Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Steve Lhomme
VLC
Commits
e3f73d0e
Commit
e3f73d0e
authored
Nov 06, 2006
by
Rémi Denis-Courmont
Browse files
Cosmetic fix
parent
e91c23be
Changes
1
Hide whitespace changes
Inline
Side-by-side
modules/access/file.c
View file @
e3f73d0e
...
...
@@ -325,12 +325,12 @@ static int Seek (access_t *p_access, int64_t i_pos)
if
(
i_pos
>
p_access
->
info
.
i_size
)
{
msg_Err
(
p_access
,
"seeking too far"
);
i_pos
=
p_access
->
info
.
i_size
;
i_pos
=
p_access
->
info
.
i_size
;
}
else
if
(
i_pos
<
0
)
{
msg_Err
(
p_access
,
"seeking too early"
);
i_pos
=
0
;
i_pos
=
0
;
}
p_access
->
info
.
i_pos
=
i_pos
;
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment