diff --git a/server/TracyView.cpp b/server/TracyView.cpp index 1d2c2afa..ffb2c6f2 100644 --- a/server/TracyView.cpp +++ b/server/TracyView.cpp @@ -251,7 +251,7 @@ const char* View::ShortenNamespace( const char* name ) const void View::DrawHelpMarker( const char* desc ) const { ImGui::TextDisabled( "(?)" ); - if ( ImGui::IsItemHovered() ) + if( ImGui::IsItemHovered() ) { ImGui::BeginTooltip(); ImGui::PushTextWrapPos( 450.0f ); diff --git a/server/TracyWorker.cpp b/server/TracyWorker.cpp index 5e5ba4b3..43463b1d 100644 --- a/server/TracyWorker.cpp +++ b/server/TracyWorker.cpp @@ -248,7 +248,7 @@ Worker::Worker( FileRead& f ) Worker::~Worker() { Shutdown(); - if ( m_thread.joinable() ) + if( m_thread.joinable() ) { m_thread.join(); }