Skip to content

Commit 1f0c1b1

Browse files
committed
Fixes C90 "mixed declarations and code" error
1 parent 722a66b commit 1f0c1b1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/opus_projection_encoder.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -379,14 +379,14 @@ void opus_projection_encoder_destroy(OpusProjectionEncoder *st)
379379

380380
int opus_projection_encoder_ctl(OpusProjectionEncoder *st, int request, ...)
381381
{
382+
va_list ap;
382383
MappingMatrix *demixing_matrix;
383384
OpusMSEncoder *ms_encoder;
384385
int ret = OPUS_OK;
385386

386387
ms_encoder = get_multistream_encoder(st);
387388
demixing_matrix = get_demixing_matrix(st);
388389

389-
va_list ap;
390390
va_start(ap, request);
391391
switch(request)
392392
{

0 commit comments

Comments
 (0)