We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent db1cc42 commit 3f75fbfCopy full SHA for 3f75fbf
src/vmp_stack.c
@@ -93,7 +93,7 @@ static PY_STACK_FRAME_T * _write_python_stack_entry(PY_STACK_FRAME_T * frame, vo
93
94
// NOTE: the profiling overhead can be reduced by storing co_lnotab in the dump and
95
// moving this computation to the reader instead of doing it here.
96
- result[*depth] = (void*) PyFrame_GetLineNumber(frame);
+ result[*depth] = (void*) (int64_t) PyFrame_GetLineNumber(frame);
97
*depth = *depth + 1;
98
}
99
result[*depth] = (void*)CODE_ADDR_TO_UID(FRAME_CODE(frame));
0 commit comments