Skip to content

Commit

Permalink
Merge pull request #978 from phsilva/master
Browse files Browse the repository at this point in the history
Fix python bindings build
  • Loading branch information
wolfpld authored Jan 29, 2025
2 parents 1640571 + 55d7df3 commit 0c22853
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/bindings/ScopedZone.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ class PyScopedZone {
m_zone = new tracy::ScopedZone(
m_line, m_source.c_str(), m_source.size(), m_function.c_str(),
m_function.size(), m_name ? m_name->c_str() : nullptr,
m_name ? m_name->size() : 0ul, m_color, m_active);
m_name ? m_name->size() : 0ul, m_color, -1, m_active);
}

void Exit() {
Expand Down

0 comments on commit 0c22853

Please sign in to comment.