[Pixman] [PATCH] test: Fix compilation on win32
Andrea Canciani
ranma42 at gmail.com
Thu May 5 01:20:04 PDT 2011
MSVC complains about uint32_t being used as an expression:
composite.c(902) : error C2275: 'uint32_t' : illegal use of this type
as an expression
---
test/composite.c | 4 +---
1 files changed, 1 insertions(+), 3 deletions(-)
diff --git a/test/composite.c b/test/composite.c
index 9a001e5..edea9a9 100644
--- a/test/composite.c
+++ b/test/composite.c
@@ -877,7 +877,7 @@ main (int argc, char **argv)
{
#define N_TESTS (8 * 1024 * 1024)
int result = 0;
- uint32_t i;
+ uint32_t i, seed;
if (argc > 1)
{
@@ -899,8 +899,6 @@ main (int argc, char **argv)
}
}
- uint32_t seed;
-
if (getenv ("PIXMAN_RANDOMIZE_TESTS"))
seed = get_random_seed();
else
--
1.7.1
More information about the Pixman
mailing list