Module: Mesa Branch: master Commit: 9c778a90ea24f25437b68bb67856c81add61e261 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=9c778a90ea24f25437b68bb67856c81add61e261
Author: Vinson Lee <[email protected]> Date: Tue Oct 6 16:02:47 2009 -0600 progs/tests: fix MSVC build. --- progs/tests/copypixrate.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/progs/tests/copypixrate.c b/progs/tests/copypixrate.c index aa4acfc..f63d59f 100644 --- a/progs/tests/copypixrate.c +++ b/progs/tests/copypixrate.c @@ -69,7 +69,7 @@ DrawTestImage(void) static int Rand(int max) { - return ((int) random()) % max; + return ((int) rand()) % max; } _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
