patch 9.1.0437: Motif requires non-const char pointer for XPM data
Problem: Motif requires non-const char pointer for XPM data shared with
GTK (Tony Mechelynck, after v9.1.0432)
Solution: Cast non-const to const char pointer for GTK (Drew Vogel).
closes: #14834
Signed-off-by: Drew Vogel <dvogel@github>
Signed-off-by: Christian Brabandt <cb@256bit.org>
diff --git a/runtime/vim48x48.xpm b/runtime/vim48x48.xpm
index 8bd08bc..b2fdd95 100644
--- a/runtime/vim48x48.xpm
+++ b/runtime/vim48x48.xpm
@@ -1,5 +1,5 @@
/* XPM */
-static const char * vim48x48[] = {
+static char * vim48x48[] = {
"48 48 8 1",
" c None",
". c #000000",