summaryrefslogtreecommitdiff
path: root/va/x11
diff options
context:
space:
mode:
authorGwenole Beauchesne <gbeauchesne@splitted-desktop.com>2011-01-27 10:36:37 +0100
committerAustin Yuan <shengquan.yuan@gmail.com>2011-02-09 11:28:38 +0800
commit95da3e742bee58383f575bdf1ebcb424fc1ad1a8 (patch)
tree3c38cc0896cbbb1fd20fed15a57cdea604cd06f5 /va/x11
parent96b62de6d3d520c852726ece1494a9846c825093 (diff)
downloadlibva-95da3e742bee58383f575bdf1ebcb424fc1ad1a8.tar.gz
Make VADriverContext.vtable a pointer.
Diffstat (limited to 'va/x11')
-rw-r--r--va/x11/va_x11.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/va/x11/va_x11.c b/va/x11/va_x11.c
index 93eb243..7a917f3 100644
--- a/va/x11/va_x11.c
+++ b/va/x11/va_x11.c
@@ -285,7 +285,7 @@ VAStatus vaPutSurface (
destx, desty, destw, desth,
cliprects, number_cliprects, flags );
- return ctx->vtable.vaPutSurface( ctx, surface, (void *)draw, srcx, srcy, srcw, srch,
+ return ctx->vtable->vaPutSurface( ctx, surface, (void *)draw, srcx, srcy, srcw, srch,
destx, desty, destw, desth,
cliprects, number_cliprects, flags );
}