Skip to content

Commit

Permalink
gh-117139: Fix missing semicolon (GH-118573)
Browse files Browse the repository at this point in the history
  • Loading branch information
Fidget-Spinner authored May 4, 2024
1 parent 5f54758 commit 978fba5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Include/internal/pycore_stackref.h
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ _Py_untag_stack_steal(PyObject **dst, const _PyStackRef *src, size_t length)

#define PyStackRef_XSETREF(dst, src) \
do { \
_PyStackRef *_tmp_dst_ptr = &(dst) \
_PyStackRef *_tmp_dst_ptr = &(dst); \
_PyStackRef _tmp_old_dst = (*_tmp_dst_ptr); \
*_tmp_dst_ptr = (src); \
PyStackRef_XDECREF(_tmp_old_dst); \
Expand Down

0 comments on commit 978fba5

Please sign in to comment.