Skip to content

Commit

Permalink
Address review
Browse files Browse the repository at this point in the history
  • Loading branch information
Fidget-Spinner committed Jan 21, 2025
1 parent ef209db commit 3f51e08
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Include/internal/pycore_frame.h
Original file line number Diff line number Diff line change
Expand Up @@ -77,10 +77,10 @@ typedef struct _PyInterpreterFrame {
uint16_t return_offset; /* Only relevant during a function call */
char owner;
#ifdef Py_DEBUG
char visited:4;
char lltrace:4;
char visited:1;
uint8_t lltrace:7;
#else
char visited;
uint8_t visited;
#endif
/* Locals and stack */
_PyStackRef localsplus[1];
Expand Down

0 comments on commit 3f51e08

Please sign in to comment.