diff options
author | Christian Göttsche <cgzones@googlemail.com> | 2020-04-06 16:27:39 +0200 |
---|---|---|
committer | Christian Göttsche <cgzones@googlemail.com> | 2020-04-11 14:06:55 +0200 |
commit | d6da3282ea865b8c39fab3e7026296fa922e1a64 (patch) | |
tree | 9ef13a604ad5896fcdc089e54c141e73beade00e /src/libcryptobox | |
parent | 0eee0523918a72f45bf3ffe3cd42c3182ed6f95e (diff) | |
download | rspamd-d6da3282ea865b8c39fab3e7026296fa922e1a64.tar.gz rspamd-d6da3282ea865b8c39fab3e7026296fa922e1a64.zip |
[Minor] Enable missing_noreturn compiler warning
Diffstat (limited to 'src/libcryptobox')
-rw-r--r-- | src/libcryptobox/cryptobox.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libcryptobox/cryptobox.c b/src/libcryptobox/cryptobox.c index 414dbdfa1..4ef366b33 100644 --- a/src/libcryptobox/cryptobox.c +++ b/src/libcryptobox/cryptobox.c @@ -93,6 +93,7 @@ rspamd_cryptobox_cpuid (gint cpu[4], gint info) static sig_atomic_t ok = 0; static jmp_buf j; +__attribute__((noreturn)) static void rspamd_cryptobox_ill_handler (int signo) { |