From 4ad5760aa973de139db13bb7f44bbb98d5204de1 Mon Sep 17 00:00:00 2001 From: bootchk Date: Mon, 15 Jul 2024 06:43:20 -0400 Subject: [PATCH] Fix unreported Clang compile error from 899b4536 An obvious typo that is not caught by CI until the weekly clang build? --- plug-ins/common/file-xmc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plug-ins/common/file-xmc.c b/plug-ins/common/file-xmc.c index 7adc39fc45..f9f5b25d54 100644 --- a/plug-ins/common/file-xmc.c +++ b/plug-ins/common/file-xmc.c @@ -532,7 +532,7 @@ xmc_export (GimpProcedure *procedure, GimpPDBStatusType status = GIMP_PDB_SUCCESS; GimpExportReturn export = GIMP_EXPORT_IGNORE; GList *drawables = NULL; - gint n_drawables = NULL; + gint n_drawables = 0; GimpImage *orig_image; GeglRectangle *hotspot_range; gint hot_spot_x;