From 48056aa086b723e690a196814a7a616f58c48bf9 Mon Sep 17 00:00:00 2001 From: Christopher Fore Date: Thu, 15 Feb 2024 13:12:02 -0500 Subject: [PATCH] xdvik/gui: Fix compiliation on GCC 14 Starting in GCC 14, what used to be warnings from incompatible pointer types are now errors. https://www.gnu.org/software/gcc/gcc-14/porting_to.html Gentoo bug: https://bugs.gentoo.org/919069 Signed-off-by: Christopher Fore --- /gui/pagesel.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gui/pagesel.c b/gui/pagesel.c index 945ae76..de7100d 100644 --- a/gui/pagesel.c +++ b/gui/pagesel.c @@ -538,7 +538,7 @@ xaw_update_list(void) button_width = get_panel_width() - 2 * (resource.btn_side_spacing + resource.btn_border_width); /* delete and re-create list */ ASSERT(total_pages <= (int)page_info.index_size, ""); - XawListChange(LIST_WIDGET, page_info.page_labels, 0, + XawListChange(LIST_WIDGET, (const char**) page_info.page_labels, 0, MAX(button_width, pagelist_width), False); /* restore selected item */ if (idx != XAW_LIST_NONE) { -- 2.43.1