Fix preprocesor condition.

This commit is contained in:
Bartosz Taudul
2022-10-12 22:05:19 +02:00
parent 8ca4bc761d
commit f64fb95a77

View File

@@ -3257,7 +3257,7 @@ void Profiler::HandleSymbolQueueItem( const SymbolQueueItem& si )
void Profiler::SymbolWorker()
{
#ifdef __linux__ && !defined TRACY_NO_CRASH_HANDLER
#if defined __linux__ && !defined TRACY_NO_CRASH_HANDLER
s_symbolTid = syscall( SYS_gettid );
#endif