clapper-app: Correct pipeline SVG size variable type

This commit is contained in:
Rafał Dzięgiel
2025-07-19 12:03:52 +02:00
parent f63e13ed39
commit 54f059aaa3

View File

@@ -582,7 +582,7 @@ _create_pipeline_svg_file_in_thread (GTask *task, GObject *source G_GNUC_UNUSED,
GVC_t *gvc; GVC_t *gvc;
gchar *path, *template = NULL, *dot_data = NULL, *img_data = NULL; gchar *path, *template = NULL, *dot_data = NULL, *img_data = NULL;
gint fd; gint fd;
guint size = 0; gsize size = 0;
if (!(tmp_subdir = _create_tmp_subdir ("pipelines", cancellable, &error))) if (!(tmp_subdir = _create_tmp_subdir ("pipelines", cancellable, &error)))
goto finish; goto finish;