From 1a40d5e23577b955265fe12a2b7b5222ec2df0f2 Mon Sep 17 00:00:00 2001 From: Juan Quintela Date: Tue, 11 Aug 2009 02:31:17 +0200 Subject: use C99 initializers for all audio/* Signed-off-by: Juan Quintela --- audio/paaudio.c | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to 'audio/paaudio.c') diff --git a/audio/paaudio.c b/audio/paaudio.c index 942e64f..dbc4081 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, ...) -- cgit v1.1