mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-07-22 15:09:04 +02:00
Fix compilation problem with GCC-15 Bug: https://bugs.gentoo.org/919213 Signed-off-by: NHOrus <jy6x2b32pie9@yahoo.com> Closes: https://github.com/gentoo/gentoo/pull/40148 Signed-off-by: Sam James <sam@gentoo.org>
13 lines
480 B
Diff
13 lines
480 B
Diff
https://bugs.gentoo.org/919213
|
|
Cast pointer as it is cast everywhere around it
|
|
--- a/gperiodic.c
|
|
+++ b/gperiodic.c
|
|
@@ -137,7 +137,7 @@
|
|
if (col == 0) gtk_label_set_markup (GTK_LABEL (label), _(header.info[row]));
|
|
else {
|
|
gtk_label_set_markup (GTK_LABEL (label), _(entry->info[row]));
|
|
- gtk_label_set_selectable (label, TRUE);
|
|
+ gtk_label_set_selectable (GTK_LABEL (label), TRUE);
|
|
}
|
|
|
|
gtk_misc_set_alignment(GTK_MISC(label), 0, 0);
|