Skip to content

Commit

Permalink
[Minor] Oops, convert back to int
Browse files Browse the repository at this point in the history
  • Loading branch information
vstakhov committed Oct 30, 2019
1 parent 8529cf6 commit 06daf27
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/plugins/spf.c
Expand Up @@ -567,7 +567,7 @@ spf_check_list (struct spf_resolved *rec, struct rspamd_task *task, gboolean cac
"%d/%d elements in the cache",
rec->domain,
rec->digest,
rec->ttl - (task->task_timestamp - rec->timestamp),
rec->ttl - (guint)(task->task_timestamp - rec->timestamp),
rspamd_lru_hash_size (spf_module_ctx->spf_hash),
rspamd_lru_hash_capacity (spf_module_ctx->spf_hash));
}
Expand Down

0 comments on commit 06daf27

Please sign in to comment.