From c19ed5ca984702b14ab3fdbdfd3576e09eb6fa9c Mon Sep 17 00:00:00 2001 From: Bruno Lopes Date: Mon, 30 Mar 2026 11:54:19 -0300 Subject: [PATCH] plug-ins: Cast g_string_append_c argument to gchar on file-tiff Silences an Apple Clang warning --- plug-ins/file-tiff/file-tiff-export.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plug-ins/file-tiff/file-tiff-export.c b/plug-ins/file-tiff/file-tiff-export.c index 6d65a470c3..3f6531ff4d 100644 --- a/plug-ins/file-tiff/file-tiff-export.c +++ b/plug-ins/file-tiff/file-tiff-export.c @@ -148,7 +148,7 @@ save_paths (TIFF *tif, if (tmpname && err == NULL) { - g_string_append_c (data, MIN (len, 255)); + g_string_append_c (data, (gchar) MIN (len, 255)); g_string_append_len (data, tmpname, MIN (len, 255)); g_free (tmpname); }