summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVinson Lee <vlee@vmware.com>2009-10-16 11:36:09 +0100
committerJosé Fonseca <jfonseca@vmware.com>2009-10-16 11:36:09 +0100
commit60b6c7458319ff01ecdd9d1650d526ac8f75e194 (patch)
tree58a986052ef17f89d59f1004d77935cece9d5f43
parente4f21be13ac14edd89e865138a9e36b266425b39 (diff)
prog/tests: Fix MSVC build.
-rw-r--r--progs/tests/invert.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/progs/tests/invert.c b/progs/tests/invert.c
index 63099fbd221..3bc97a460b6 100644
--- a/progs/tests/invert.c
+++ b/progs/tests/invert.c
@@ -128,7 +128,7 @@ static void Init( void )
{
const char * const ver_string = (const char * const)
glGetString( GL_VERSION );
- const float ver = strtof( ver_string, NULL );
+ const float ver = strtod( ver_string, NULL );
printf("GL_RENDERER = %s\n", (char *) glGetString(GL_RENDERER));