diff options
author | malc <av1474@comtv.ru> | 2009-08-11 20:48:02 +0400 |
---|---|---|
committer | malc <av1474@comtv.ru> | 2009-08-11 20:51:24 +0400 |
commit | 98f9f48ccb1276d2fc3bcf4592cc1febea796e4b (patch) | |
tree | 5fffa93acfc46285ef92a8d30293a53c7d35cdd0 /audio/coreaudio.c | |
parent | 1a40d5e23577b955265fe12a2b7b5222ec2df0f2 (diff) |
Aesthetics
Reformat to make item borders more visible
Fix cases of stray tabs and vertical misalignments
Signed-off-by: malc <av1474@comtv.ru>
Diffstat (limited to 'audio/coreaudio.c')
-rw-r--r-- | audio/coreaudio.c | 20 |
1 files changed, 12 insertions, 8 deletions
diff --git a/audio/coreaudio.c b/audio/coreaudio.c index 349447099e..dab4e5f30f 100644 --- a/audio/coreaudio.c +++ b/audio/coreaudio.c @@ -513,14 +513,18 @@ static void coreaudio_audio_fini (void *opaque) } static struct audio_option coreaudio_options[] = { - {.name = "BUFFER_SIZE", - .tag = AUD_OPT_INT, - .valp = &conf.buffer_frames, - .descr = "Size of the buffer in frames"}, - {.name = "BUFFER_COUNT", - .tag = AUD_OPT_INT, - .valp = &conf.nbuffers, - .descr = "Number of buffers"}, + { + .name = "BUFFER_SIZE", + .tag = AUD_OPT_INT, + .valp = &conf.buffer_frames, + .descr = "Size of the buffer in frames" + }, + { + .name = "BUFFER_COUNT", + .tag = AUD_OPT_INT, + .valp = &conf.nbuffers, + .descr = "Number of buffers" + }, { /* End of list */ } }; |