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
VideoLAN
libdvdcss
Commits
45f037d4
Commit
45f037d4
authored
Sep 04, 2005
by
Steve Lhomme
Browse files
* libdvdcss: MSVC7 compilation fixes (shouldn't break mingw32)
parent
618d5b81
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/device.c
View file @
45f037d4
...
...
@@ -587,7 +587,7 @@ static int libc_seek( dvdcss_t dvdcss, int i_blocks )
}
i_seek
=
(
off_t
)
i_blocks
*
(
off_t
)
DVDCSS_BLOCK_SIZE
;
i_seek
=
lseek
(
dvdcss
->
i_read_fd
,
i_seek
,
SEEK_SET
);
i_seek
=
lseek
64
(
dvdcss
->
i_read_fd
,
i_seek
,
SEEK_SET
);
if
(
i_seek
<
0
)
{
...
...
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