From ebe846fa7311d91421ee801bcf8a898a7c11fe6b Mon Sep 17 00:00:00 2001 From: Paul B Mahol Date: Mon, 23 Jul 2012 19:53:33 +0000 Subject: [PATCH] vf_colormatrix: add missing semicolon Signed-off-by: Paul B Mahol --- libavfilter/vf_colormatrix.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavfilter/vf_colormatrix.c b/libavfilter/vf_colormatrix.c index bb66bd3d6a..45bff8f6e4 100644 --- a/libavfilter/vf_colormatrix.c +++ b/libavfilter/vf_colormatrix.c @@ -61,7 +61,7 @@ typedef struct { char src[256]; char dst[256]; int hsub, vsub; - AVFilterBufferRef *outpicref + AVFilterBufferRef *outpicref; } ColorMatrixContext; #define ma m[0][0]