1
0
mirror of https://github.com/wolfpld/tracy synced 2025-04-29 20:33:52 +00:00

Fix preprocesor condition.

This commit is contained in:
Bartosz Taudul 2022-10-12 22:05:19 +02:00
parent 8ca4bc761d
commit f64fb95a77
No known key found for this signature in database
GPG Key ID: B7FE2008B7575DF3

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