From: Kentaro Hayashi <kenhys@xdump.org>
Date: Sun, 7 Sep 2025 20:32:00 +0900
Subject: Fix ftbfs with GCC 15

Closes: #1096783
---
 gol.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gol.c b/gol.c
index 5ce814e..ca307bb 100644
--- a/gol.c
+++ b/gol.c
@@ -2071,7 +2071,7 @@ load_subscribe_plugins() {
     g_module_symbol(handle, "subscribe_description", (void**) &sp->description);
     g_module_symbol(handle, "subscribe_thumbnail", (void**) &sp->thumbnail);
     const char* const name = sp->name ? sp->name() : NULL;
-    if (name && sp->init && !sp->init(&sc)) {
+    if (name && sp->init && !sp->init()) {
       g_module_close(sp->handle);
       g_free(sp);
       continue;
