From 66091f81391d6ddbd99831a05fc6e9f4842c9fde Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Tue, 18 Oct 2022 10:53:21 +0000 Subject: [PATCH] Merge branch 'fix-windows-build-testmountoperation' into 'main' tests/testmountoperation.c: Fix build on Windows See merge request GNOME/gtk!5126 (cherry picked from commit b4db48935d04afd6fcf7d6109f38cc2bf2ebb331) 1a5a65ac tests/testmountoperation.c: Fix build on Windows --- tests/testmountoperation.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/testmountoperation.c b/tests/testmountoperation.c index 4c908a7c64..a255e644ef 100644 --- a/tests/testmountoperation.c +++ b/tests/testmountoperation.c @@ -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);