diff -r acd3cd4aaceb -r 2efc27d87e1c glib/tsrc/BC/tests/refcount/signals-multithread.c --- a/glib/tsrc/BC/tests/refcount/signals-multithread.c Tue Aug 31 16:54:36 2010 +0300 +++ b/glib/tsrc/BC/tests/refcount/signals-multithread.c Wed Sep 01 12:36:54 2010 +0100 @@ -31,7 +31,7 @@ #define G_IS_TEST_CLASS(tclass) (G_TYPE_CHECK_CLASS_TYPE ((tclass), G_TYPE_TEST)) #define G_TEST_GET_CLASS(test) (G_TYPE_INSTANCE_GET_CLASS ((test), G_TYPE_TEST, GTestClass)) -static GRand *grand; +static GRand *rand; typedef struct _GTest GTest; typedef struct _GTestClass GTestClass; @@ -103,7 +103,7 @@ NULL }; - grand = g_rand_new(); + rand = g_rand_new(); test_type = g_type_register_static (G_TYPE_OBJECT, "GTest", &test_info, 0); @@ -240,7 +240,7 @@ static void g_test_do_prop (GTest * test) { - test->value = g_rand_int (grand); + test->value = g_rand_int (rand); g_object_notify (G_OBJECT (test), "test-prop"); }