]> granicus.if.org Git - vim/commitdiff
patch 9.0.0062: compiler warnings for signed/unsigned char v9.0.0062
authorBram Moolenaar <Bram@vim.org>
Sat, 23 Jul 2022 08:22:47 +0000 (09:22 +0100)
committerBram Moolenaar <Bram@vim.org>
Sat, 23 Jul 2022 08:22:47 +0000 (09:22 +0100)
Problem:    Compiler warnings for signed/unsigned char.
Solution:   Add type casts. (John Marriott)

src/gui_w32.c
src/version.c

index 472cebf733506d8241557851dd57677d7dfb9384..43fef8bd4356062fed673974f8a9cf690db8df5d 100644 (file)
@@ -8549,7 +8549,7 @@ test_gui_w32_sendevent(dict_T *args)
     char_u     *event;
     INPUT      inputs[1];
 
-    event = dict_get_string(args, "event", TRUE);
+    event = dict_get_string(args, (char_u *)"event", TRUE);
     if (event == NULL)
        return FALSE;
 
@@ -8559,7 +8559,7 @@ test_gui_w32_sendevent(dict_T *args)
     {
        WORD        vkCode;
 
-       vkCode = dict_get_number_def(args, "keycode", 0);
+       vkCode = dict_get_number_def(args, (char_u *)"keycode", 0);
        if (vkCode <= 0 || vkCode >= 0xFF)
        {
            semsg(_(e_invalid_argument_nr), (long)vkCode);
index 46d964312fb5e35b666b2c71157669d002a6a4da..c0230c432f8a6598b81cd33a72180e71a53c11f0 100644 (file)
@@ -735,6 +735,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    62,
 /**/
     61,
 /**/