mirror of
https://github.com/wolfpld/tracy.git
synced 2026-08-26 13:08:24 +00:00
removing implicit/default argument value
This commit is contained in:
@@ -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;
|
||||
|
||||
|
||||
@@ -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 = {};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user