1
0
mirror of https://github.com/wolfpld/tracy.git synced 2025-03-20 07:40:02 +08:00

Merge pull request #235 from avoroshilov/fix-compilation-warning

Fix compilation warning
This commit is contained in:
Bartosz Taudul 2021-06-20 10:57:17 +02:00 committed by GitHub
commit d90758e92d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -341,7 +341,7 @@ CallstackEntryData DecodeCallstackPtr( uint64_t ptr )
#if !defined TRACY_NO_CALLSTACK_INLINES #if !defined TRACY_NO_CALLSTACK_INLINES
BOOL doInline = FALSE; BOOL doInline = FALSE;
DWORD ctx = 0; DWORD ctx = 0;
DWORD inlineNum; DWORD inlineNum = 0;
if( _SymAddrIncludeInlineTrace ) if( _SymAddrIncludeInlineTrace )
{ {
inlineNum = _SymAddrIncludeInlineTrace( proc, ptr ); inlineNum = _SymAddrIncludeInlineTrace( proc, ptr );