removing implicit/default argument value

This commit is contained in:
Marcos Slomp
2026-01-15 11:29:49 -08:00
parent 44696c47c6
commit 839b38d2ec
2 changed files with 2 additions and 2 deletions

View File

@@ -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;

View File

@@ -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 = {};