Skip to content

Commit e5857c8

Browse files
committed
updated for version 7.3.1225
Problem: Compiler warnings when building with Motif. Solution: Change set_label() argument. (Kazunobu Kuriyama)
1 parent 80432ce commit e5857c8

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

src/gui_motif.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3653,7 +3653,7 @@ find_replace_keypress(w, frdp, event)
36533653
static void
36543654
set_label(w, label)
36553655
Widget w;
3656-
char_u *label;
3656+
char *label;
36573657
{
36583658
XmString str;
36593659
char_u *p, *next;
@@ -3662,7 +3662,7 @@ set_label(w, label)
36623662
if (!w)
36633663
return;
36643664

3665-
p = vim_strsave(label);
3665+
p = vim_strsave((char_u *)label);
36663666
if (p == NULL)
36673667
return;
36683668
for (next = p; *next; ++next)

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -728,6 +728,8 @@ static char *(features[]) =
728728

729729
static int included_patches[] =
730730
{ /* Add new patch number below this line */
731+
/**/
732+
1225,
731733
/**/
732734
1224,
733735
/**/

0 commit comments

Comments
 (0)