]> granicus.if.org Git - vim/commitdiff
patch 8.1.0752: one more compiler warning for signed/unsigned string v8.1.0752
authorBram Moolenaar <Bram@vim.org>
Tue, 15 Jan 2019 19:07:48 +0000 (20:07 +0100)
committerBram Moolenaar <Bram@vim.org>
Tue, 15 Jan 2019 19:07:48 +0000 (20:07 +0100)
Problem:    One more compiler warning for signed/unsigned string. (Tony
            Mechelynck)
Solution:   Remove type cast.

src/ex_docmd.c
src/version.c

index 6f9f1b98a03335912685bb98c0ae79f90ad7d570..dddbf8304fcdf1b56a2671aa690b273491c5a803 100644 (file)
@@ -10942,7 +10942,7 @@ eval_vars(
                        return NULL;
                    }
 #else
-                   *errormsg = (char_u *)_("E809: #< is not available without the +eval feature");
+                   *errormsg = _("E809: #< is not available without the +eval feature");
                    return NULL;
 #endif
                }
index f84da1dd0bcd0f4d345c297db7c6908544953d23..2930e758f32407a5730f4f309fc4d577c4737b9b 100644 (file)
@@ -795,6 +795,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    752,
 /**/
     751,
 /**/