0
0
mirror of https://github.com/vim/vim.git synced 2025-09-23 03:43:49 -04:00

patch 8.2.2389: test failure on a few systems

Problem:    Test failure on a few systems.
Solution:   Avoid that "char" value is negative.
This commit is contained in:
Bram Moolenaar
2021-01-21 22:53:38 +01:00
parent 57d5a01cb4
commit 9b6344613e
4 changed files with 9 additions and 5 deletions

View File

@@ -224,7 +224,7 @@ typedef struct {
// arguments to ISN_CHECKTYPE
typedef struct {
type_T *ct_type;
char ct_off; // offset in stack, -1 is bottom
char ct_off; // offset in stack (positive), 1 is bottom
char ct_arg_idx; // argument index or zero
} checktype_T;