Commit 5567f3d5 authored by Steve Lhomme's avatar Steve Lhomme Committed by Jean-Baptiste Kempf

fix typos

Signed-off-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
parent 8e123be7
...@@ -2,7 +2,7 @@ Small Hacking file for the Qt Interface ...@@ -2,7 +2,7 @@ Small Hacking file for the Qt Interface
If you ever code for Qt interface, please read this before. If you ever code for Qt interface, please read this before.
** Code Convetions ** ** Code Conventions **
Please respect VLC code conventions here: Please respect VLC code conventions here:
- NO trailing spaces - NO trailing spaces
......
...@@ -612,7 +612,7 @@ static int TimeCallback( vlc_object_t *p_this, char const *psz_cmd, ...@@ -612,7 +612,7 @@ static int TimeCallback( vlc_object_t *p_this, char const *psz_cmd,
input_thread_t *p_input = (input_thread_t*)p_this; input_thread_t *p_input = (input_thread_t*)p_this;
VLC_UNUSED(psz_cmd); VLC_UNUSED(oldval); VLC_UNUSED(p_data); VLC_UNUSED(psz_cmd); VLC_UNUSED(oldval); VLC_UNUSED(p_data);
/* Update "position" for better intf behavour */ /* Update "position" for better intf behaviour */
const int64_t i_length = var_GetInteger( p_input, "length" ); const int64_t i_length = var_GetInteger( p_input, "length" );
if( i_length > 0 && newval.i_int >= 0 && newval.i_int <= i_length ) if( i_length > 0 && newval.i_int >= 0 && newval.i_int <= i_length )
{ {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment