diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2021-09-14 21:21:07 +0100 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2021-09-14 21:21:07 +0100 |
commit | ec76c1fc65dff29e270ba2b93f35a5b8c2d32e17 (patch) | |
tree | ec88153337bda3263ad7e06385b681b5495c66e0 /src/hs_helper.c | |
parent | 65f36ff3e6549bdd021a028d9e668a3620842584 (diff) | |
download | rspamd-ec76c1fc65dff29e270ba2b93f35a5b8c2d32e17.tar.gz rspamd-ec76c1fc65dff29e270ba2b93f35a5b8c2d32e17.zip |
[Minor] Add attribute noreturn to start_hs_helper function
Suggested by: @citrin
Diffstat (limited to 'src/hs_helper.c')
-rw-r--r-- | src/hs_helper.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/hs_helper.c b/src/hs_helper.c index c19293bb1..e3c464786 100644 --- a/src/hs_helper.c +++ b/src/hs_helper.c @@ -26,7 +26,7 @@ #endif static gpointer init_hs_helper (struct rspamd_config *cfg); -static void start_hs_helper (struct rspamd_worker *worker); +__attribute__((noreturn)) static void start_hs_helper (struct rspamd_worker *worker); worker_t hs_helper_worker = { "hs_helper", /* Name */ |