diff options
author | Ken Jin <kenjin@python.org> | 2024-05-04 15:45:49 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-04 15:45:49 (GMT) |
commit | 978fba58aef347de4a1376e525df2dacc7b2fff3 (patch) | |
tree | f018fc669b02acc3876166f44d18fffb9f9f85a1 | |
parent | 5f547585fa56c94c5d836b5313a7200f4937ebc4 (diff) | |
download | cpython-978fba58aef347de4a1376e525df2dacc7b2fff3.zip cpython-978fba58aef347de4a1376e525df2dacc7b2fff3.tar.gz cpython-978fba58aef347de4a1376e525df2dacc7b2fff3.tar.bz2 |
gh-117139: Fix missing semicolon (GH-118573)
-rw-r--r-- | Include/internal/pycore_stackref.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/internal/pycore_stackref.h b/Include/internal/pycore_stackref.h index fd929cd..9389817 100644 --- a/Include/internal/pycore_stackref.h +++ b/Include/internal/pycore_stackref.h @@ -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); \ |