Use gboolean consts instead of C bools

Part-of: <https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/3748>
This commit is contained in:
Bilal Elmoussaoui
2024-05-12 14:38:08 +02:00
committed by Marge Bot
parent 7a38e12ed0
commit c13956fb9e
4 changed files with 17 additions and 15 deletions

View File

@ -86,7 +86,7 @@ meta_unix_input_stream_new (int fd)
{
return G_INPUT_STREAM (g_object_new (META_TYPE_UNIX_INPUT_STREAM,
"fd", fd,
"close-fd", true,
"close-fd", TRUE,
NULL));
}