diff options
author | Jeremy Harris <jgh146exb@wizmail.org> | 2023-07-23 13:56:32 +0100 |
---|---|---|
committer | Jeremy Harris <jgh146exb@wizmail.org> | 2023-07-23 13:56:32 +0100 |
commit | 249f39385d608eaa6a3daabce6f9bcfa15eb2d3c (patch) | |
tree | 84908c9360f3d5df46ecf59f82863657946457af | |
parent | 1209e3e19e292cee517e43a2ccfe9b44b33bb1dc (diff) |
Fix use of typedef for FreeBSD
Broken-by: 1209e3e19e29
-rw-r--r-- | src/src/expand.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/src/expand.c b/src/src/expand.c index d8ea7ae6b..ae1657549 100644 --- a/src/src/expand.c +++ b/src/src/expand.c @@ -7862,7 +7862,7 @@ NOT_ITEM: ; case EOP_UTF8CLEAN: { int seq_len = 0, index = 0, bytes_left = 0, complete; - ulong codepoint = (ulong)-1; + u_long codepoint = (u_long)-1; uschar seq_buff[4]; /* accumulate utf-8 here */ /* Manually track tainting, as we deal in individual chars below */ |