[vlc-devel] commit: skip-ads option is a bool (Christophe Mutricy )
git version control
git at videolan.org
Sat Feb 20 00:35:09 CET 2010
vlc | branch: master | Christophe Mutricy <xtophe at videolan.org> | Fri Feb 19 23:34:11 2010 +0000| [b584f3dfa16680b1d08487d21d259c0593bff83d] | committer: Christophe Mutricy
skip-ads option is a bool
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=b584f3dfa16680b1d08487d21d259c0593bff83d
---
modules/demux/playlist/asx.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/modules/demux/playlist/asx.c b/modules/demux/playlist/asx.c
index 8d225b7..a8dfe42 100644
--- a/modules/demux/playlist/asx.c
+++ b/modules/demux/playlist/asx.c
@@ -211,7 +211,7 @@ int Import_ASX( vlc_object_t *p_this )
p_demux->p_sys->i_data_len = -1;
p_demux->p_sys->b_utf8 = false;
p_demux->p_sys->b_skip_ads =
- var_InheritInteger( p_demux, "playlist-skip-ads" );
+ var_InheritBool( p_demux, "playlist-skip-ads" );
return VLC_SUCCESS;
}
More information about the vlc-devel
mailing list