Skip to content

Commit 978fba5

Browse files
gh-117139: Fix missing semicolon (GH-118573)
1 parent 5f54758 commit 978fba5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Include/internal/pycore_stackref.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ _Py_untag_stack_steal(PyObject **dst, const _PyStackRef *src, size_t length)
114114

115115
#define PyStackRef_XSETREF(dst, src) \
116116
do { \
117-
_PyStackRef *_tmp_dst_ptr = &(dst) \
117+
_PyStackRef *_tmp_dst_ptr = &(dst); \
118118
_PyStackRef _tmp_old_dst = (*_tmp_dst_ptr); \
119119
*_tmp_dst_ptr = (src); \
120120
PyStackRef_XDECREF(_tmp_old_dst); \

0 commit comments

Comments
 (0)