From: Gerd Hoffmann Date: Thu, 7 Nov 2013 11:25:02 +0000 (+0100) Subject: Revert "ossaudio: do not enable by default" X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=926de75432d57cade393750da8102f3ba1eeb4a0;p=qemu.git Revert "ossaudio: do not enable by default" This reverts commit c905c5012ac0c6fde3b8094d2206a3139deddba2. There is a better fix for the issue at hand. Signed-off-by: Gerd Hoffmann --- diff --git a/audio/ossaudio.c b/audio/ossaudio.c index 3e04a58376..007c64115a 100644 --- a/audio/ossaudio.c +++ b/audio/ossaudio.c @@ -932,7 +932,7 @@ struct audio_driver oss_audio_driver = { .init = oss_audio_init, .fini = oss_audio_fini, .pcm_ops = &oss_pcm_ops, - .can_be_default = 0, + .can_be_default = 1, .max_voices_out = INT_MAX, .max_voices_in = INT_MAX, .voice_size_out = sizeof (OSSVoiceOut),