summaryrefslogtreecommitdiff
path: root/tests/ordering/constant-class.c-expected
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ordering/constant-class.c-expected')
-rw-r--r--tests/ordering/constant-class.c-expected8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/ordering/constant-class.c-expected b/tests/ordering/constant-class.c-expected
index 312b74812..c6ce5c234 100644
--- a/tests/ordering/constant-class.c-expected
+++ b/tests/ordering/constant-class.c-expected
@@ -275,13 +275,13 @@ fooclass_get_type_once (void)
GType
fooclass_get_type (void)
{
- static volatile gsize fooclass_type_id__volatile = 0;
- if (g_once_init_enter (&fooclass_type_id__volatile)) {
+ static volatile gsize fooclass_type_id__once = 0;
+ if (g_once_init_enter (&fooclass_type_id__once)) {
GType fooclass_type_id;
fooclass_type_id = fooclass_get_type_once ();
- g_once_init_leave (&fooclass_type_id__volatile, fooclass_type_id);
+ g_once_init_leave (&fooclass_type_id__once, fooclass_type_id);
}
- return fooclass_type_id__volatile;
+ return fooclass_type_id__once;
}
gpointer