]> git.sesse.net Git - vlc/commitdiff
Simple: fix typo
authorJean-Baptiste Kempf <jb@videolan.org>
Sun, 14 Apr 2013 21:32:34 +0000 (23:32 +0200)
committerJean-Baptiste Kempf <jb@videolan.org>
Sun, 14 Apr 2013 21:32:34 +0000 (23:32 +0200)
modules/audio_filter/channel_mixer/simple.c

index 9f35ffc85ac780e3ec9d6edd9cd86480c985da7f..59572ebd9e80bb0308de150d5ca8f4a8b231b3a9 100644 (file)
@@ -247,7 +247,7 @@ static int OpenFilter( vlc_object_t *p_this )
         return VLC_EGENERIC;
 
     p_filter->p_sys = malloc( sizeof(*p_sys) );
-    if( unlikely(p_filter->p_sys) )
+    if( unlikely(!p_filter->p_sys) )
         return VLC_ENOMEM;
 
     p_filter->pf_audio_filter = Filter;