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/general/dlist-clear.c | |
parent | 4d7a1e3df3ad974aadc5cc857e3494404ac3d3f6 (diff) |
Silence MSVC C4255 warnings.
MSVC 4255 warning:
'function' : no function prototype given: converting '()' to '(void)'
Diffstat (limited to 'tests/general/dlist-clear.c')
-rw-r--r-- | tests/general/dlist-clear.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/general/dlist-clear.c b/tests/general/dlist-clear.c index c47f87f97..7842739a5 100644 --- a/tests/general/dlist-clear.c +++ b/tests/general/dlist-clear.c @@ -49,7 +49,7 @@ static GLboolean Automatic = GL_FALSE; static int win_width, win_height; -static void display() +static void display(void) { GLboolean pass = GL_TRUE; int x, y; |