Skip to content

Commit e0f3c10

Browse files
committed
avutil/downmix_info: add missing semicolon
Fixes compilation broken by 8a72775. Signed-off-by: James Almer <jamrial@gmail.com>
1 parent 8accee8 commit e0f3c10

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libavutil/downmix_info.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ AVDownmixInfo *av_downmix_info_update_side_data(AVFrame *frame)
3131
side_data = av_frame_new_side_data(frame, AV_FRAME_DATA_DOWNMIX_INFO,
3232
sizeof(AVDownmixInfo));
3333
if (side_data)
34-
memset(side_data->data, 0, sizeof(AVDownmixInfo))
34+
memset(side_data->data, 0, sizeof(AVDownmixInfo));
3535
}
3636

3737
if (!side_data)

0 commit comments

Comments
 (0)