1 umask returns mode_t which is unsigned int
2 this maks confusion in 32bit and 64bit build, so we extend to long for both
4 --- glib-2.82.0/gio/tests/file.c.orig
5 +++ glib-2.82.0/gio/tests/file.c
7 /* Reset the umask after querying it above. There’s no way to query it without
10 - g_test_message ("Current umask: %u", current_umask);
11 + g_test_message ("Current umask: %lu", (long) current_umask);
13 for (i = 0; i < G_N_ELEMENTS (vectors); i++)