Skip to content

Commit f1c3740

Browse files
committed
Fix indentation in qsbr.c
1 parent 39e3954 commit f1c3740

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Python/qsbr.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ _Py_qsbr_advance(struct _qsbr_shared *shared)
126126
uint64_t
127127
_Py_qsbr_deferred_advance(struct _qsbr_thread_state *qsbr)
128128
{
129-
if (++qsbr->deferrals < QSBR_DEFERRED_LIMIT) {
129+
if (++qsbr->deferrals < QSBR_DEFERRED_LIMIT) {
130130
return _Py_qsbr_shared_current(qsbr->shared) + QSBR_INCR;
131131
}
132132
qsbr->deferrals = 0;

0 commit comments

Comments
 (0)