[vlc-commits] Fix typo: bandwith -> bandwidth.

Benjamin Drung git at videolan.org
Thu Sep 6 14:30:12 CEST 2012


vlc | branch: master | Benjamin Drung <bdrung at debian.org> | Thu Sep  6 14:15:43 2012 +0200| [4afbaf587d11e0df32e035309cb7425f754b02c5] | committer: Jean-Baptiste Kempf

Fix typo: bandwith -> bandwidth.

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

 modules/access/dtv/dtv.h       |    2 +-
 modules/access/dvb/linux_dvb.c |    6 +++---
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/modules/access/dtv/dtv.h b/modules/access/dtv/dtv.h
index f399572..fae60ef 100644
--- a/modules/access/dtv/dtv.h
+++ b/modules/access/dtv/dtv.h
@@ -108,7 +108,7 @@ typedef struct isdbt_layer
     uint8_t time_interleaving;
 } isdbt_layer_t;
 
-int dvb_set_isdbt (dvb_device_t *, uint32_t freq, uint32_t bandwith,
+int dvb_set_isdbt (dvb_device_t *, uint32_t freq, uint32_t bandwidth,
                    int transmission, uint32_t guard, const isdbt_layer_t[3]);
 
 typedef struct isdbt_sound
diff --git a/modules/access/dvb/linux_dvb.c b/modules/access/dvb/linux_dvb.c
index f6e15f5..b4f0367 100644
--- a/modules/access/dvb/linux_dvb.c
+++ b/modules/access/dvb/linux_dvb.c
@@ -959,11 +959,11 @@ static int FrontendSetQAM( access_t *p_access )
 static fe_bandwidth_t DecodeBandwidth( access_t *p_access )
 {
     fe_bandwidth_t      fe_bandwidth = 0;
-    int i_bandwith = var_GetInteger( p_access, "dvb-bandwidth" );
+    int i_bandwidth = var_GetInteger( p_access, "dvb-bandwidth" );
 
-    msg_Dbg( p_access, "using bandwidth=%d", i_bandwith );
+    msg_Dbg( p_access, "using bandwidth=%d", i_bandwidth );
 
-    switch( i_bandwith )
+    switch( i_bandwidth )
     {
         case 0: fe_bandwidth = BANDWIDTH_AUTO; break;
         case 6: fe_bandwidth = BANDWIDTH_6_MHZ; break;



More information about the vlc-commits mailing list