plug-ins: Cast g_string_append_c argument to gchar on file-tiff

Silences an Apple Clang warning
This commit is contained in:
Bruno Lopes 2026-03-30 11:54:19 -03:00
parent 811c0c8546
commit c19ed5ca98

View file

@ -148,7 +148,7 @@ save_paths (TIFF *tif,
if (tmpname && err == NULL) 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_string_append_len (data, tmpname, MIN (len, 255));
g_free (tmpname); g_free (tmpname);
} }