forked from aniani/vim
patch 8.2.2845: MS-Windows: warning for signed/unsigned comparison
Problem: MS-Windows: warning for signed/unsigned comparison. Solution: Add type cast.
This commit is contained in:
@@ -4341,13 +4341,13 @@ sync_shell_dir(VTermStringFragment *frag)
|
|||||||
char_u *new_dir;
|
char_u *new_dir;
|
||||||
|
|
||||||
// remove HOSTNAME to get PWD
|
// remove HOSTNAME to get PWD
|
||||||
while (*pos != '/' && offset < frag->len)
|
while (*pos != '/' && offset < (int)frag->len)
|
||||||
{
|
{
|
||||||
offset += 1;
|
offset += 1;
|
||||||
pos += 1;
|
pos += 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (offset >= frag->len)
|
if (offset >= (int)frag->len)
|
||||||
{
|
{
|
||||||
semsg(_(e_failed_to_extract_pwd_from_str_check_your_shell_config),
|
semsg(_(e_failed_to_extract_pwd_from_str_check_your_shell_config),
|
||||||
frag->str);
|
frag->str);
|
||||||
|
@@ -750,6 +750,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
2845,
|
||||||
/**/
|
/**/
|
||||||
2844,
|
2844,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user