summaryrefslogtreecommitdiffstats
path: root/src/gui_motif.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui_motif.c')
-rw-r--r--src/gui_motif.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui_motif.c b/src/gui_motif.c
index 5b6c7a7643..57f264df95 100644
--- a/src/gui_motif.c
+++ b/src/gui_motif.c
@@ -3653,7 +3653,7 @@ find_replace_keypress(w, frdp, event)
static void
set_label(w, label)
Widget w;
- char_u *label;
+ char *label;
{
XmString str;
char_u *p, *next;
@@ -3662,7 +3662,7 @@ set_label(w, label)
if (!w)
return;
- p = vim_strsave(label);
+ p = vim_strsave((char_u *)label);
if (p == NULL)
return;
for (next = p; *next; ++next)