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
44a7af39
Commit
44a7af39
authored
Jan 23, 2010
by
Rémi Denis-Courmont
Browse files
file: fix warning
parent
65113f55
Changes
1
Hide whitespace changes
Inline
Side-by-side
modules/access/file.c
View file @
44a7af39
...
...
@@ -325,7 +325,7 @@ ssize_t FileRead( access_t *p_access, uint8_t *p_buffer, size_t i_len )
struct
stat
st
;
if
((
fstat
(
fd
,
&
st
)
==
0
)
&&
(
p_access
->
info
.
i_size
!=
st
.
st_size
))
&&
(
p_access
->
info
.
i_size
!=
(
uint64_t
)
st
.
st_size
))
{
p_access
->
info
.
i_size
=
st
.
st_size
;
p_access
->
info
.
i_update
|=
INPUT_UPDATE_SIZE
;
...
...
Write
Preview
Supports
Markdown
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