Skip to content

Commit 0cc8e29

Browse files
committed
Fix copy pasta.
1 parent 9a27779 commit 0cc8e29

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

profiler/src/profiler/TracySourceContents.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ void SourceContents::Parse( const char* fileName, const Worker& worker, const Vi
6969
void SourceContents::Parse( const char* source )
7070
{
7171
if( source == m_data ) return;
72-
Parse( m_data, strlen( source ) );
72+
Parse( source, strlen( source ) );
7373
}
7474

7575
void SourceContents::Parse( const char* source, size_t len )

0 commit comments

Comments
 (0)