The open source OpenXR runtime

tracy: Add braces around if statement

Fix a warning about missing braces around an empty
statement when TRACY_VERBOSE is not defined

Part-of: <https://gitlab.freedesktop.org/monado/monado/-/merge_requests/2373>

+3 -1
+3 -1
src/external/tracy/client/TracySysTrace.cpp
··· 1133 1133 SetThreadName( "Tracy Sampling" ); 1134 1134 InitRpmalloc(); 1135 1135 sched_param sp = { 99 }; 1136 - if( pthread_setschedparam( pthread_self(), SCHED_FIFO, &sp ) != 0 ) TracyDebug( "Failed to increase SysTraceWorker thread priority!\n" ); 1136 + if( pthread_setschedparam( pthread_self(), SCHED_FIFO, &sp ) != 0 ) { 1137 + TracyDebug( "Failed to increase SysTraceWorker thread priority!\n" ); 1138 + } 1137 1139 auto ctxBufferIdx = s_ctxBufferIdx; 1138 1140 auto ringArray = s_ring; 1139 1141 auto numBuffers = s_numBuffers;