From 2f0f9a87d0e8d27ce6ad5b81134d01b9d2392cd1 Mon Sep 17 00:00:00 2001 From: Clément Bœsch Date: Mon, 21 Nov 2011 07:50:03 +0100 Subject: Fix various if parenthesis misplacements. --- libavcodec/alsdec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavcodec/alsdec.c') diff --git a/libavcodec/alsdec.c b/libavcodec/alsdec.c index fdcbd3fb44..fc98970bd7 100644 --- a/libavcodec/alsdec.c +++ b/libavcodec/alsdec.c @@ -1442,7 +1442,7 @@ static int decode_frame(AVCodecContext *avctx, ctx->cur_frame_length = sconf->frame_length; // decode the frame data - if ((invalid_frame = read_frame_data(ctx, ra_frame) < 0)) + if ((invalid_frame = read_frame_data(ctx, ra_frame)) < 0) av_log(ctx->avctx, AV_LOG_WARNING, "Reading frame data failed. Skipping RA unit.\n"); -- cgit v1.2.3