Skip to content

Commit a10560e

Browse files
committed
fix style
1 parent 4fb9389 commit a10560e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Modules/_heapqmodule.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -625,7 +625,7 @@ _heapq_heappushpop_max_impl(PyObject *module, PyObject *heap, PyObject *item)
625625
}
626626

627627
returnitem = PyList_GET_ITEM(heap, 0);
628-
PyListObject * list = _PyList_CAST(heap);
628+
PyListObject *list = _PyList_CAST(heap);
629629
FT_ATOMIC_STORE_PTR_RELAXED(list->ob_item[0], Py_NewRef(item));
630630
if (siftup_max(list, 0) < 0) {
631631
Py_DECREF(returnitem);

0 commit comments

Comments
 (0)