From 5c6d2b12b6d4178231e0d1b2409533b13ec74b6f Mon Sep 17 00:00:00 2001 From: Darren Salt Date: Fri, 9 May 2008 20:05:55 +0100 Subject: Fix compilation failure (extra "("). --- src/video_out/video_out_xvmc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/video_out/video_out_xvmc.c b/src/video_out/video_out_xvmc.c index 890e079a6..79c2a80a3 100644 --- a/src/video_out/video_out_xvmc.c +++ b/src/video_out/video_out_xvmc.c @@ -556,7 +556,7 @@ static vo_frame_t *xvmc_alloc_frame (vo_driver_t *this_gen) { lprintf ("xvmc_alloc_frame\n"); - frame = calloc(1, (sizeof (xvmc_frame_t)); + frame = calloc(1, sizeof (xvmc_frame_t)); if (!frame) return NULL; -- cgit v1.2.3