]> git.ipfire.org Git - thirdparty/vim.git/commitdiff
patch 8.2.4254: using short instead of int v8.2.4254
author=?UTF-8?q?Dundar=20G=C3=B6c?= <gocdundar@gmail.com>
Sat, 29 Jan 2022 15:12:39 +0000 (15:12 +0000)
committerBram Moolenaar <Bram@vim.org>
Sat, 29 Jan 2022 15:12:39 +0000 (15:12 +0000)
Problem:    Using short instead of int.
Solution:   Use int. (closes #9658)

src/if_cscope.c
src/version.c

index edcd4ca684a2871d4b8d7548a531b39d680d532f..f8d4dc6df2d6c6ac87a19800c1f2d1067a88b157 100644 (file)
@@ -675,14 +675,12 @@ cs_check_for_tags(void)
     static int
 cs_cnt_connections(void)
 {
-    short i;
-    short cnt = 0;
+    int i;
+    int cnt = 0;
 
     for (i = 0; i < csinfo_size; i++)
-    {
        if (csinfo[i].fname != NULL)
            cnt++;
-    }
     return cnt;
 }
 
@@ -1358,7 +1356,8 @@ cs_insert_filelist(
     char *flags,
     stat_T *sb UNUSED)
 {
-    short      i, j;
+    int            i;
+    int            j;
 #ifndef UNIX
     BY_HANDLE_FILE_INFORMATION bhfi;
 
@@ -1522,7 +1521,7 @@ cs_lookup_cmd(exarg_T *eap)
 cs_kill(exarg_T *eap UNUSED)
 {
     char *stok;
-    short i;
+    int i;
 
     if ((stok = strtok((char *)NULL, (const char *)" ")) == NULL)
     {
@@ -2456,7 +2455,8 @@ cs_resolve_file(int i, char *name)
     static int
 cs_show(exarg_T *eap UNUSED)
 {
-    short i;
+    int i;
+
     if (cs_cnt_connections() == 0)
        msg_puts(_("no cscope connections\n"));
     else
index 25dcfe316bef2ce59587057e0feece3a13ea11f2..25f858bcb793ab799c207467daf8e088601a25e0 100644 (file)
@@ -750,6 +750,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    4254,
 /**/
     4253,
 /**/