Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
VideoLAN
libdvdcss
Commits
b1210d0e
Commit
b1210d0e
authored
Mar 17, 2013
by
Jean-Baptiste Kempf
Browse files
Fix comparison sign warning
parent
366c6aa1
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/libdvdcss.c
View file @
b1210d0e
...
...
@@ -378,7 +378,7 @@ LIBDVDCSS_EXPORT dvdcss_t dvdcss_open ( char *psz_target )
if
(
i_fd
>=
0
)
{
size_t
len
=
strlen
(
psz_tag
);
if
(
write
(
i_fd
,
psz_tag
,
len
)
<
len
)
if
(
write
(
i_fd
,
psz_tag
,
len
)
<
(
long
)
len
)
{
print_error
(
dvdcss
,
"Error writing cache directory tag, continuing..
\n
"
);
...
...
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