Fix typo (#17059)
vkalintiris committed
Feb 26, 2024 at 13:35 UTC
cd145f82a3213fc3e040b8799decb722ec7f22b7
1 file changed
+2
-2
src/libnetdata/log/log.c
+2
-2
@@ -14,7 +14,7 @@
14
#include <machine/endian.h>
15
#endif
16
17
-#if !defined(ENABLE_SERNTRY) && defined(HAVE_BACKTRACE)
17
+#if !defined(ENABLE_SENTRY) && defined(HAVE_BACKTRACE)
18
#include <execinfo.h>
19
#endif
20
@@ -2334,7 +2334,7 @@ void netdata_logger_fatal( const char *file, const char *function, const unsigne
2334
char action_result[60+1];
2335
snprintfz(action_result, 60, "%s:%s", program_name, tag_to_send);
2336
2337
-#if !defined(ENABLE_SERNTRY) && defined(HAVE_BACKTRACE)
2337
+#if !defined(ENABLE_SENTRY) && defined(HAVE_BACKTRACE)
2338
int fd = nd_log.sources[NDLS_DAEMON].fd;
2339
if(fd == -1)
2340
fd = STDERR_FILENO;