Skip to content

Commit f2cd968

Browse files
fix visited
1 parent 3f51e08 commit f2cd968

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Include/internal/pycore_frame.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ typedef struct _PyInterpreterFrame {
7777
uint16_t return_offset; /* Only relevant during a function call */
7878
char owner;
7979
#ifdef Py_DEBUG
80-
char visited:1;
80+
uint8_t visited:1;
8181
uint8_t lltrace:7;
8282
#else
8383
uint8_t visited;

0 commit comments

Comments
 (0)