[vlc-commits] fix typos

Steve Lhomme git at videolan.org
Fri Dec 18 11:52:38 CET 2015


vlc | branch: master | Steve Lhomme <robUx4 at videolabs.io> | Fri Dec 18 10:02:09 2015 +0100| [5567f3d59f53986b14c40c58ca1394b17b0d09e8] | committer: Jean-Baptiste Kempf

fix typos

Signed-off-by: Jean-Baptiste Kempf <jb at videolan.org>

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=5567f3d59f53986b14c40c58ca1394b17b0d09e8
---

 modules/gui/qt4/HACKING |    2 +-
 src/input/var.c         |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/modules/gui/qt4/HACKING b/modules/gui/qt4/HACKING
index c58a476..a265295 100644
--- a/modules/gui/qt4/HACKING
+++ b/modules/gui/qt4/HACKING
@@ -2,7 +2,7 @@ Small Hacking file for the Qt Interface
 
 If you ever code for Qt interface, please read this before.
 
-** Code Convetions **
+** Code Conventions **
 
 Please respect VLC code conventions here:
  - NO trailing spaces
diff --git a/src/input/var.c b/src/input/var.c
index 7218a56..025a798 100644
--- a/src/input/var.c
+++ b/src/input/var.c
@@ -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;
     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" );
     if( i_length > 0 && newval.i_int >= 0 && newval.i_int <= i_length )
     {



More information about the vlc-commits mailing list