From e9716d3ce67ecce0dbdc37a306ce7b6b5474885d Mon Sep 17 00:00:00 2001 From: Bram Matthys Date: Tue, 11 Jul 2023 16:26:06 +0200 Subject: [PATCH] Fix compile problem on Windows [skip ci] --- src/modules/antimixedutf8.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/antimixedutf8.c b/src/modules/antimixedutf8.c index da707c4bd..702561fe4 100644 --- a/src/modules/antimixedutf8.c +++ b/src/modules/antimixedutf8.c @@ -621,7 +621,7 @@ int lookalikespam_score(const char *text, char *logbuf, size_t logbufsize) int points = 0; int last_character_was_word_separator = 0; int skip; - u_int32_t utfchar; + uint32_t utfchar; for (p = text; *p; p++) {