From 839b38d2ec51100e31d20c6143caa46115b0cbcc Mon Sep 17 00:00:00 2001 From: Marcos Slomp Date: Thu, 15 Jan 2026 11:29:49 -0800 Subject: [PATCH] removing implicit/default argument value --- public/client/TracySysTrace.cpp | 2 +- public/client/windows/TracyETW.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/public/client/TracySysTrace.cpp b/public/client/TracySysTrace.cpp index b0cd5df3..d012c417 100644 --- a/public/client/TracySysTrace.cpp +++ b/public/client/TracySysTrace.cpp @@ -191,7 +191,7 @@ bool SysTraceStart( int64_t& samplingPeriod ) if( !etw::CheckAdminPrivilege() ) return false; - session_kernel = etw::StartSingletonKernelLoggerSession(); + session_kernel = etw::StartSingletonKernelLoggerSession( 0 ); if( session_kernel.handle == 0 ) return false; diff --git a/public/client/windows/TracyETW.cpp b/public/client/windows/TracyETW.cpp index e9651713..f20e9829 100644 --- a/public/client/windows/TracyETW.cpp +++ b/public/client/windows/TracyETW.cpp @@ -326,7 +326,7 @@ static ULONG SetCPUProfilingInterval( int microseconds ) return ETWError( status ); } -static Session StartSingletonKernelLoggerSession( ULONGLONG EnableFlags = 0 ) +static Session StartSingletonKernelLoggerSession( ULONGLONG EnableFlags ) { Session session = {};