diff mbox

[tvtime,02/17] alsa_stream: Use "default" alsa output device as default

Message ID 1455389258-13470-2-git-send-email-hdegoede@redhat.com (mailing list archive)
State New, archived
Headers show

Commit Message

Hans de Goede Feb. 13, 2016, 6:47 p.m. UTC
Use "default" alsa output device as default, rather then hardcoding
"hw:0,0".

Signed-off-by: Hans de Goede <hdegoede@redhat.com>
---
 src/tvtimeconf.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox

Patch

diff --git a/src/tvtimeconf.c b/src/tvtimeconf.c
index cadae7a..001351b 100644
--- a/src/tvtimeconf.c
+++ b/src/tvtimeconf.c
@@ -817,7 +817,7 @@  config_t *config_new( void )
     ct->doc = 0;
 
     ct->alsa_inputdev = strdup( "hw:1,0" );
-    ct->alsa_outputdev = strdup( "hw:0,0" );
+    ct->alsa_outputdev = strdup( "default" );
 
     /* Default key bindings. */
     ct->keymap[ 0 ] = TVTIME_NOCOMMAND;