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
e5eae01a
Commit
e5eae01a
authored
Jun 10, 2008
by
Jean-Paul Saman
Browse files
Fix compiler error.
parent
23844810
Changes
1
Hide whitespace changes
Inline
Side-by-side
projects/activex/vlccontrol2.cpp
View file @
e5eae01a
...
...
@@ -542,7 +542,7 @@ STDMETHODIMP VLCInput::put_time(double time)
p_md
=
libvlc_playlist_get_media_player
(
p_libvlc
,
&
ex
);
if
(
!
libvlc_exception_raised
(
&
ex
)
)
{
libvlc_media_player_set_time
(
p_md
,
(
vlc_
int64_t
)
time
,
&
ex
);
libvlc_media_player_set_time
(
p_md
,
(
int64_t
)
time
,
&
ex
);
libvlc_media_player_release
(
p_md
);
if
(
!
libvlc_exception_raised
(
&
ex
)
)
{
...
...
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