mirror of
http://git.haproxy.org/git/haproxy.git/
synced 2025-01-05 19:52:14 +00:00
[BUILD] pattern: use 'int' instead of 'int32_t'
Ross West reported that int32_t breaks compilation on FreeBSD. Since an int is 32-bit on all supported platforms and we already rely on that, change the type.
This commit is contained in:
parent
0a6b1fda03
commit
b695a6e5fa
@ -54,7 +54,7 @@ enum {
|
||||
union pattern_arg_data {
|
||||
struct in_addr ip; /* used for ipv4 type */
|
||||
uint32_t integer; /* used for unsigned 32bits integer type */
|
||||
int32_t sinteger; /* used for signed 32bits integer type */
|
||||
int sinteger; /* used for signed 32bits integer type */
|
||||
struct chunk str;
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user