summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDarren Salt <linux@youmustbejoking.demon.co.uk>2008-05-09 20:05:55 +0100
committerDarren Salt <linux@youmustbejoking.demon.co.uk>2008-05-09 20:05:55 +0100
commit5c6d2b12b6d4178231e0d1b2409533b13ec74b6f (patch)
tree6672d8873e56e598c6ab7ab343be35511e30bc36
parent88d23a2dbabf419ab4014b449be119a741aa54f5 (diff)
downloadxine-lib-5c6d2b12b6d4178231e0d1b2409533b13ec74b6f.tar.gz
xine-lib-5c6d2b12b6d4178231e0d1b2409533b13ec74b6f.tar.bz2
Fix compilation failure (extra "(").
-rw-r--r--src/video_out/video_out_xvmc.c2
1 files changed, 1 insertions, 1 deletions
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;