Merge branch 'fix-windows-build-testmountoperation' into 'main'
tests/testmountoperation.c: Fix build on Windows See merge request GNOME/gtk!5126 (cherry picked from commitb4db48935d)1a5a65actests/testmountoperation.c: Fix build on Windows
This commit is contained in:
committed by
Chun-wei Fan
parent
46eebcb2ac
commit
66091f8139
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user