summaryrefslogtreecommitdiff
path: root/src/structs.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/structs.h')
-rw-r--r--src/structs.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/structs.h b/src/structs.h
index b5889b776..0715686f7 100644
--- a/src/structs.h
+++ b/src/structs.h
@@ -1406,8 +1406,8 @@ typedef struct type_S type_T;
struct type_S {
vartype_T tt_type;
int8_T tt_argcount; // for func, incl. vararg, -1 for unknown
- char tt_min_argcount; // number of non-optional arguments
- char tt_flags; // TTFLAG_ values
+ int8_T tt_min_argcount; // number of non-optional arguments
+ char_u tt_flags; // TTFLAG_ values
type_T *tt_member; // for list, dict, func return type
type_T **tt_args; // func argument types, allocated
};