diff --git a/client/TracyProfiler.cpp b/client/TracyProfiler.cpp index 6fcf48a4..ff9ce9c7 100644 --- a/client/TracyProfiler.cpp +++ b/client/TracyProfiler.cpp @@ -3215,7 +3215,7 @@ void Profiler::HandleSymbolQueueItem( const SymbolQueueItem& si ) auto hnd = LoadLibraryExA( mod, nullptr, DONT_RESOLVE_DLL_REFERENCES ); if( hnd ) { - auto ptr = GetProcAddress( hnd, fn ); + auto ptr = (const void*)GetProcAddress( hnd, fn ); if( ptr ) { auto buf = (char*)tracy_malloc( si.extra );