diff options
author | Darren Salt <linux@youmustbejoking.demon.co.uk> | 2008-05-09 20:05:55 +0100 |
---|---|---|
committer | Darren Salt <linux@youmustbejoking.demon.co.uk> | 2008-05-09 20:05:55 +0100 |
commit | 5c6d2b12b6d4178231e0d1b2409533b13ec74b6f (patch) | |
tree | 6672d8873e56e598c6ab7ab343be35511e30bc36 | |
parent | 88d23a2dbabf419ab4014b449be119a741aa54f5 (diff) | |
download | xine-lib-5c6d2b12b6d4178231e0d1b2409533b13ec74b6f.tar.gz xine-lib-5c6d2b12b6d4178231e0d1b2409533b13ec74b6f.tar.bz2 |
Fix compilation failure (extra "(").
-rw-r--r-- | src/video_out/video_out_xvmc.c | 2 |
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; |