commit | 9b6344613eecfcf77c510d7b63fcc4b7b51aefbc | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Thu Jan 21 22:53:38 2021 +0100 |
committer | Bram Moolenaar <Bram@vim.org> | Thu Jan 21 22:53:38 2021 +0100 |
tree | de908c507c80ae09e879f347913cb50b6116fb27 | |
parent | 57d5a01cb45d6edb16c3835a49b42d6d8fc0163e [diff] [blame] |
patch 8.2.2389: test failure on a few systems Problem: Test failure on a few systems. Solution: Avoid that "char" value is negative.
diff --git a/src/vim9.h b/src/vim9.h index c51be8e..e6c4087 100644 --- a/src/vim9.h +++ b/src/vim9.h
@@ -224,7 +224,7 @@ // 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;