Merge branch 'cherry-pick-b4db4893' into 'gtk-4-8'

Fix building `tests/mountoperation.c` on Windows (backport MR!5126 to gtk-4-8)

See merge request GNOME/gtk!5408
This commit is contained in:
Matthias Clasen 2023-01-09 10:58:46 +00:00
commit a87b3f63ec

View File

@ -148,11 +148,11 @@ main (int argc, char *argv[])
GPid pid;
pids = g_array_new (TRUE, FALSE, sizeof (GPid));
pid = 1000;
pid = (GPid)1000;
g_array_append_val (pids, pid);
pid = 2000;
pid = (GPid)2000;
g_array_append_val (pids, pid);
pid = 3000;
pid = (GPid)3000;
g_array_append_val (pids, pid);
g_signal_emit_by_name (op, "show-processes", "Foo\nbar", pids, choices);