Skip to content

Commit 05b1a91

Browse files
committed
fix formatting
1 parent b8bdb13 commit 05b1a91

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Modules/arraymodule.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ enum machine_format_code {
154154
static arraydata *
155155
arraydata_alloc(Py_ssize_t size, int itemsize)
156156
{
157-
assert (size <= PY_SSIZE_T_MAX / itemsize);
157+
assert(size <= PY_SSIZE_T_MAX / itemsize);
158158
Py_ssize_t bufsize = sizeof(arraydata) + size * itemsize;
159159
arraydata *data = (arraydata *)PyMem_Malloc(bufsize);
160160
if (data == NULL) {

0 commit comments

Comments
 (0)