[vlc-commits] Dshow: fix typo
Jean-Baptiste Kempf
git at videolan.org
Fri Oct 12 11:11:00 CEST 2012
vlc | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Fri Oct 12 11:10:08 2012 +0200| [b0519c56ed1edafd21be5b2338cae58c1540473f] | committer: Jean-Baptiste Kempf
Dshow: fix typo
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=b0519c56ed1edafd21be5b2338cae58c1540473f
---
modules/access/dshow/dshow.cpp | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/modules/access/dshow/dshow.cpp b/modules/access/dshow/dshow.cpp
index 05b476c..00242aa 100644
--- a/modules/access/dshow/dshow.cpp
+++ b/modules/access/dshow/dshow.cpp
@@ -2015,7 +2015,7 @@ static int FindDevices( vlc_object_t *p_this, const char *psz_name,
{
/* Find list of devices */
list<string> list_devices;
- if( SUCCEEDED(CoInitializeEx( NULL, COINIT_MULTITTHREADED ))
+ if( SUCCEEDED(CoInitializeEx( NULL, COINIT_MULTITHREADED ))
|| SUCCEEDED(CoInitializeEx( NULL, COINIT_APARTMENTTHREADED )) )
{
bool b_audio = !strcmp( psz_name, CFG_PREFIX "adev" );
@@ -2056,7 +2056,7 @@ static int ConfigDevicesCallback( vlc_object_t *p_this, char const *psz_name,
char *psz_device = NULL;
int i_ret = VLC_SUCCESS;
- if( FAILED(CoInitializeEx( NULL, COINIT_MULTITTHREADED ))
+ if( FAILED(CoInitializeEx( NULL, COINIT_MULTITHREADED ))
&& FAILED(CoInitializeEx( NULL, COINIT_APARTMENTTHREADED )) )
return VLC_EGENERIC;
More information about the vlc-commits
mailing list