mirror of
https://git.haproxy.org/git/haproxy.git/
synced 2025-08-10 00:57:02 +02:00
CLEANUP: Consistently unsigned int
for bitfields
see 6a0dd73390
Found using GitHub's CodeQL scan.
This commit is contained in:
parent
bd6b4be721
commit
f480768d31
@ -125,8 +125,8 @@ struct stktable_data_type {
|
|||||||
const char *name; /* name of the data type */
|
const char *name; /* name of the data type */
|
||||||
int std_type; /* standard type we can use for this data, STD_T_* */
|
int std_type; /* standard type we can use for this data, STD_T_* */
|
||||||
int arg_type; /* type of optional argument, ARG_T_* */
|
int arg_type; /* type of optional argument, ARG_T_* */
|
||||||
int is_array:1; /* this is an array of gpc/gpt */
|
uint is_array:1; /* this is an array of gpc/gpt */
|
||||||
int is_local:1; /* this is local only and never learned */
|
uint is_local:1; /* this is local only and never learned */
|
||||||
};
|
};
|
||||||
|
|
||||||
/* stick table keyword type */
|
/* stick table keyword type */
|
||||||
|
Loading…
Reference in New Issue
Block a user