]> git.sesse.net Git - vlc/blobdiff - src/audio_output/common.c
Remove object type field
[vlc] / src / audio_output / common.c
index ecd99f888b5af7f19c047a8382a0d250fe448ebf..659e445810a4c2c88ebf5f1f6f54ac9c74bf2f50 100644 (file)
@@ -51,8 +51,7 @@ aout_instance_t * __aout_New( vlc_object_t * p_parent )
     aout_instance_t * p_aout;
 
     /* Allocate descriptor. */
-    p_aout = vlc_custom_create( p_parent, sizeof( *p_aout ), VLC_OBJECT_AOUT,
-                                "audio output" );
+    p_aout = vlc_custom_create( p_parent, sizeof( *p_aout ), "audio output" );
     if( p_aout == NULL )
     {
         return NULL;