Module: Mesa Branch: master Commit: 60b6c7458319ff01ecdd9d1650d526ac8f75e194 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=60b6c7458319ff01ecdd9d1650d526ac8f75e194
Author: Vinson Lee <[email protected]> Date: Fri Oct 16 11:36:09 2009 +0100 prog/tests: Fix MSVC build. --- progs/tests/invert.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/progs/tests/invert.c b/progs/tests/invert.c index 63099fb..3bc97a4 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)); _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
