diff options
author | Vinson Lee <vlee@vmware.com> | 2009-08-25 15:57:02 -0700 |
---|---|---|
committer | Vinson Lee <vlee@vmware.com> | 2009-08-25 15:57:02 -0700 |
commit | c08014ada3bd5b64d1157e89423c9ac67e18da3a (patch) | |
tree | 3a4219143987d95d26f2debdd3cdcccad364c6fb /tests/fbo/fbo-3d.c | |
parent | 4d7a1e3df3ad974aadc5cc857e3494404ac3d3f6 (diff) |
Silence MSVC C4255 warnings.
MSVC 4255 warning:
'function' : no function prototype given: converting '()' to '(void)'
Diffstat (limited to 'tests/fbo/fbo-3d.c')
-rw-r--r-- | tests/fbo/fbo-3d.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/fbo/fbo-3d.c b/tests/fbo/fbo-3d.c index 77b7f4534..3b1073eaa 100644 --- a/tests/fbo/fbo-3d.c +++ b/tests/fbo/fbo-3d.c @@ -179,7 +179,7 @@ static GLboolean test_depth_drawing(int start_x, int start_y, float *expected) } static void -display() +display(void) { GLboolean pass = GL_TRUE; int depth; |