Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Stefan Strogin
flac
Commits
838408a3
Commit
838408a3
authored
Sep 24, 2004
by
Josh Coalson
Browse files
minor casting
parent
df5783a2
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/flac/encode.c
View file @
838408a3
...
...
@@ -2119,7 +2119,7 @@ FLAC__bool fskip_ahead(FILE *f, FLAC__uint64 offset)
while
(
offset
>
0
)
{
long
need
=
(
long
)
min
(
offset
,
LONG_MAX
);
if
(
fseek
(
f
,
need
,
SEEK_CUR
)
<
0
)
{
need
=
min
(
offset
,
sizeof
(
dump
));
need
=
(
long
)
min
(
offset
,
sizeof
(
dump
));
if
(
fread
(
dump
,
need
,
1
,
f
)
<
1
)
return
false
;
}
...
...
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