From 14ec24665979af345b15cf7e76f2bb20e00adcae Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Fri, 24 Apr 2020 00:55:57 +0200 Subject: [PATCH] Fix typo. --- client/TracyProfiler.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/TracyProfiler.cpp b/client/TracyProfiler.cpp index cbee564c..80636c2d 100644 --- a/client/TracyProfiler.cpp +++ b/client/TracyProfiler.cpp @@ -2573,7 +2573,7 @@ void Profiler::ReportTopology() }; #if defined _WIN32 || defined __CYGWIN__ - t_GetLogicalProcessorInformationEx _GetLogicalProcessorInformationEx = (t_GetLogicalProcessorInformationEx)GetProcAddress( GetModuleHandleA( "kernel32" ), "GetLogicalProcessorInformationEx" ); + t_GetLogicalProcessorInformationEx _GetLogicalProcessorInformationEx = (t_GetLogicalProcessorInformationEx)GetProcAddress( GetModuleHandleA( "kernel32.dll" ), "GetLogicalProcessorInformationEx" ); if( !_GetLogicalProcessorInformationEx ) return; DWORD psz = 0;