diff options
author | Vsevolod Stakhov <vsevolod@rspamd.com> | 2024-03-18 14:56:16 +0000 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@rspamd.com> | 2024-03-18 14:56:16 +0000 |
commit | 6b2b4167187fee09365271cca182866ecb029af3 (patch) | |
tree | a085717bc896b25ff4280eb86abecca0d5c36767 /src/libutil/fstring.h | |
parent | 47bcfc8360dfa1754474580e779314b8d6a78da6 (diff) | |
download | rspamd-6b2b4167187fee09365271cca182866ecb029af3.tar.gz rspamd-6b2b4167187fee09365271cca182866ecb029af3.zip |
[Rework] Remove some of the GLib types in lieu of standard ones
This types have constant conflicts with the system ones especially on OSX.
Diffstat (limited to 'src/libutil/fstring.h')
-rw-r--r-- | src/libutil/fstring.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libutil/fstring.h b/src/libutil/fstring.h index 9eacf21d0..30a32a389 100644 --- a/src/libutil/fstring.h +++ b/src/libutil/fstring.h @@ -114,7 +114,7 @@ char *rspamd_ftok_cstr(const rspamd_ftok_t *str) /* * Return fast hash value for fixed string converted to lowercase */ -guint32 rspamd_fstrhash_lc(const rspamd_ftok_t *str, gboolean is_utf); +uint32_t rspamd_fstrhash_lc(const rspamd_ftok_t *str, gboolean is_utf); /** * Return true if two strings are equal |