]> git.sesse.net Git - vlc/commitdiff
* auhal.c: Some drivers don't support hogmode. Don't fail entirely if this is the...
authorDerk-Jan Hartman <hartman@videolan.org>
Wed, 18 Jan 2006 01:39:30 +0000 (01:39 +0000)
committerDerk-Jan Hartman <hartman@videolan.org>
Wed, 18 Jan 2006 01:39:30 +0000 (01:39 +0000)
modules/audio_output/auhal.c

index df9e0cf981c42b954bc82eef760ac19da3ed0708..74815b5943e147e049aa9ee7389f32adca819f61 100644 (file)
@@ -231,9 +231,9 @@ static int Open( vlc_object_t * p_this )
 
     if( err != noErr )
     {
+        /* This is not a fatal error. Some drivers simply don't support this property */
         msg_Warn( p_aout, "could not check whether device is hogged: %4.4s",
                  (char *)&err );
-        goto error;
     }
 
     if( p_sys->i_hog_pid != -1 && p_sys->i_hog_pid != getpid() )