summary refs log tree commit diff stats
path: root/audio/paaudio.c
diff options
context:
space:
mode:
authorJuan Quintela <quintela@redhat.com>2009-08-11 02:31:17 +0200
committermalc <av1474@comtv.ru>2009-08-11 20:51:24 +0400
commit1a40d5e23577b955265fe12a2b7b5222ec2df0f2 (patch)
treea5d043000b861d524237dcb6d581ee1026f99f86 /audio/paaudio.c
parent1dd3e4d13d0d59de61de518c9e504cb444782510 (diff)
downloadfocaccia-qemu-1a40d5e23577b955265fe12a2b7b5222ec2df0f2.tar.gz
focaccia-qemu-1a40d5e23577b955265fe12a2b7b5222ec2df0f2.zip
use C99 initializers for all audio/*
Signed-off-by: Juan Quintela <quintela@redhat.com>
Diffstat (limited to 'audio/paaudio.c')
-rw-r--r--audio/paaudio.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/audio/paaudio.c b/audio/paaudio.c
index 942e64f2b2..dbc40813ee 100644
--- a/audio/paaudio.c
+++ b/audio/paaudio.c
@@ -38,11 +38,8 @@ static struct {
     char *sink;
     char *source;
 } conf = {
-    1024,
-    2,
-    NULL,
-    NULL,
-    NULL
+    .samples = 1024,
+    .divisor = 2,
 };
 
 static void GCC_FMT_ATTR (2, 3) qpa_logerr (int err, const char *fmt, ...)