Skip to content

Commit

Permalink
[Minor] Uh-oh, fix compilers compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
vstakhov committed Mar 25, 2023
1 parent a78ea81 commit ffbaf16
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rspamd.c
Expand Up @@ -1296,7 +1296,7 @@ version (void)
#else
rspamd_printf ("LuaJIT enabled: FALSE\n");
#endif
#if __has_feature(address_sanitizer)
#if defined(__has_feature) && __has_feature(address_sanitizer)
rspamd_printf ("ASAN enabled: TRUE\n");
#else
rspamd_printf ("ASAN enabled: FALSE\n");
Expand Down

0 comments on commit ffbaf16

Please sign in to comment.