From 54f059aaa33abe73d8e3603e785262cdcebad682 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafa=C5=82=20Dzi=C4=99giel?= Date: Sat, 19 Jul 2025 12:03:52 +0200 Subject: [PATCH] clapper-app: Correct pipeline SVG size variable type --- src/bin/clapper-app/clapper-app-utils.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/clapper-app/clapper-app-utils.c b/src/bin/clapper-app/clapper-app-utils.c index 447696ed..90ceb6e2 100644 --- a/src/bin/clapper-app/clapper-app-utils.c +++ b/src/bin/clapper-app/clapper-app-utils.c @@ -582,7 +582,7 @@ _create_pipeline_svg_file_in_thread (GTask *task, GObject *source G_GNUC_UNUSED, GVC_t *gvc; gchar *path, *template = NULL, *dot_data = NULL, *img_data = NULL; gint fd; - guint size = 0; + gsize size = 0; if (!(tmp_subdir = _create_tmp_subdir ("pipelines", cancellable, &error))) goto finish;