ref: 8f46f437a7726521822d513662f512eb2e54ff34
parent: 25803916cbb2af3e23d6aa491c8b33328b3f01d0
author: Ben Harris <bjh21@bjh21.me.uk>
date: Sun Nov 13 12:26:05 EST 2022
gtk: Fix a missing "const" qualifier when building with GTK 2
--- a/gtk.c
+++ b/gtk.c
@@ -1832,7 +1832,7 @@
bool centre, int type)
{
GtkWidget *window, *hbox, *text, *button;
- char *titles;
+ const char *titles;
int i, def, cancel;
window = gtk_dialog_new();