Skip to content

Commit f5e46b5

Browse files
authored
Fix formatting in gc_free_threading.c
1 parent 9388518 commit f5e46b5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Python/gc_free_threading.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2213,7 +2213,7 @@ record_deallocation(PyThreadState *tstate)
22132213
int count = _Py_atomic_load_int_relaxed(&gcstate->young.count);
22142214
int new_count;
22152215
do {
2216-
if (count == 0){
2216+
if (count == 0) {
22172217
break;
22182218
}
22192219
new_count = count + (int)gc->alloc_count;

0 commit comments

Comments
 (0)