Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.xiph.org/xiph/opus.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGregory Maxwell <greg@xiph.org>2013-06-30 07:33:32 +0400
committerGregory Maxwell <greg@xiph.org>2013-06-30 07:33:32 +0400
commita0d096f18f13b94ca1d804dfd9e21b42b6bcd702 (patch)
treec635efa624c8523e43433c16a447b21a8b139d7c /src/opus_multistream_decoder.c
parentb271dae70cca6b6434f717e4a24c97b0d3735084 (diff)
Braces go on the next line.
Diffstat (limited to 'src/opus_multistream_decoder.c')
-rw-r--r--src/opus_multistream_decoder.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/opus_multistream_decoder.c b/src/opus_multistream_decoder.c
index ebec6a7c..f3d2311e 100644
--- a/src/opus_multistream_decoder.c
+++ b/src/opus_multistream_decoder.c
@@ -400,7 +400,8 @@ int opus_multistream_decoder_ctl(OpusMSDecoder *st, int request, ...)
int s;
opus_uint32 *value = va_arg(ap, opus_uint32*);
opus_uint32 tmp;
- if (!value) {
+ if (!value)
+ {
goto bad_arg;
}
*value = 0;
@@ -445,7 +446,8 @@ int opus_multistream_decoder_ctl(OpusMSDecoder *st, int request, ...)
if (stream_id<0 || stream_id >= st->layout.nb_streams)
ret = OPUS_BAD_ARG;
value = va_arg(ap, OpusDecoder**);
- if (!value) {
+ if (!value)
+ {
goto bad_arg;
}
for (s=0;s<stream_id;s++)