From 49685a161b0befcc84386a4a6fb998a931e53c6c Mon Sep 17 00:00:00 2001 From: Leon White Date: Wed, 17 Sep 2025 17:24:17 +0200 Subject: Fix build with GCC 15 --- src/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.c b/src/main.c index 6cc5103..5ffc7b6 100644 --- a/src/main.c +++ b/src/main.c @@ -35,7 +35,7 @@ int main (int argc G_GNUC_UNUSED, char **argv G_GNUC_UNUSED) bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8"); textdomain (GETTEXT_PACKAGE); - IndicatorPrintersService *pService = indicator_printers_service_new (NULL); + IndicatorPrintersService *pService = indicator_printers_service_new (); GMainLoop *pLoop = g_main_loop_new (NULL, FALSE); g_signal_connect (pService, "name-lost", G_CALLBACK (onNameLost), pLoop); g_main_loop_run (pLoop); -- cgit v1.2.3