diff options
author | Brian Paul <[email protected]> | 2015-11-20 10:19:16 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2015-11-20 14:09:15 -0700 |
commit | 47fae842d01331af5acc56ff8db37c09ceca791f (patch) | |
tree | 02d83a79dc318c3d87eca2661dafbddb83280fad /src/mesa/main/points.c | |
parent | 1def5ef95863f704ab5d1bd3bef3a31a6e461b60 (diff) |
mesa: update some old-style (K&R?) function pointer calls
Reviewed-by: Emil Velikov <[email protected]>
Diffstat (limited to 'src/mesa/main/points.c')
-rw-r--r-- | src/mesa/main/points.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/points.c b/src/mesa/main/points.c index 863e3c1af32..c2f2b6399cb 100644 --- a/src/mesa/main/points.c +++ b/src/mesa/main/points.c @@ -209,7 +209,7 @@ _mesa_PointParameterfv( GLenum pname, const GLfloat *params) } if (ctx->Driver.PointParameterfv) - (*ctx->Driver.PointParameterfv)(ctx, pname, params); + ctx->Driver.PointParameterfv(ctx, pname, params); } |