diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2021-07-15 19:44:01 +0100 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2021-07-15 19:44:01 +0100 |
commit | fae4ed9fce781764540e636fec1e8397f1f9f532 (patch) | |
tree | 5754a0f82507b0700b9fc6cdbc3698493ae6e8a1 /src/libutil/regexp.c | |
parent | f87014f894470620f39b93f390413be9555c1a0b (diff) | |
download | rspamd-fae4ed9fce781764540e636fec1e8397f1f9f532.tar.gz rspamd-fae4ed9fce781764540e636fec1e8397f1f9f532.zip |
[Rework] Add composites manager concept
Diffstat (limited to 'src/libutil/regexp.c')
-rw-r--r-- | src/libutil/regexp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libutil/regexp.c b/src/libutil/regexp.c index 6ec5b4d39..c9e832929 100644 --- a/src/libutil/regexp.c +++ b/src/libutil/regexp.c @@ -1178,7 +1178,7 @@ rspamd_regexp_get_id (const rspamd_regexp_t *re) { g_assert (re != NULL); - return re->id; + return (gpointer)re->id; } gpointer |