Skip to content

Commit d29fd8e

Browse files
committed
Fix indentation in qsbr.c
1 parent 60daa68 commit d29fd8e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Python/qsbr.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,8 +92,8 @@ grow_thread_array(struct _qsbr_shared *shared)
9292
size_t alloc_size = (size_t)new_size * sizeof(struct _qsbr_pad) + alignment - 1;
9393
void *raw = PyMem_RawCalloc(1, alloc_size);
9494
if (raw == NULL) {
95-
return -1;
96-
}
95+
return -1;
96+
}
9797
struct _qsbr_pad *array = _Py_ALIGN_UP(raw, alignment);
9898

9999
void *old_raw = shared->array_raw;

0 commit comments

Comments
 (0)