From 2056fb1dd30ce94f8fbb2c056b296ac8eda6e956 Mon Sep 17 00:00:00 2001 From: Jehan Date: Thu, 5 Jun 2025 00:45:02 +0200 Subject: [PATCH] app: fix a build warning. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixes: > app/core/gimp-user-install.c:762:1: warning: no previous declaration for ‘user_update_post_process_menurc_over20’ [-Wmissing-declarations] --- app/core/gimp-user-install.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/core/gimp-user-install.c b/app/core/gimp-user-install.c index 72294f501e..8b593e1000 100644 --- a/app/core/gimp-user-install.c +++ b/app/core/gimp-user-install.c @@ -758,7 +758,7 @@ user_update_menurc_over20 (const GMatchInfo *matched_value, return FALSE; } -gchar * +static gchar * user_update_post_process_menurc_over20 (gpointer user_data) { GString *string = g_string_new (NULL);