]> git.sesse.net Git - vlc/commitdiff
Same mistake here: Pass real VLC_OBJECT's to msg_*
authorJean-Paul Saman <jpsaman@videolan.org>
Thu, 10 Mar 2005 21:16:32 +0000 (21:16 +0000)
committerJean-Paul Saman <jpsaman@videolan.org>
Thu, 10 Mar 2005 21:16:32 +0000 (21:16 +0000)
modules/audio_filter/converter/mpgatofixed32.c

index de5fd41aefc4043cc9d918ce93bd6008fa2d0ca0..5ddb7bd3da32b52371858972e2405806f10b3a6b 100644 (file)
@@ -178,7 +178,7 @@ static void DoWork( aout_instance_t * p_aout, aout_filter_t * p_filter,
             break;
 
         default:
-            msg_Err( p_filter, "cannot interleave %i channels",
+            msg_Err( p_aout, "cannot interleave %i channels",
                      p_pcm->channels );
         }
     }
@@ -210,7 +210,7 @@ static void DoWork( aout_instance_t * p_aout, aout_filter_t * p_filter,
             break;
 
         default:
-            msg_Err( p_filter, "cannot interleave %i channels",
+            msg_Err( p_aout, "cannot interleave %i channels",
                      p_pcm->channels );
         }
     }