From: Ken Jin Date: Sat, 4 May 2024 15:45:49 +0000 (+0800) Subject: gh-117139: Fix missing semicolon (GH-118573) X-Git-Tag: v3.13.0b1~109 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=978fba58aef347de4a1376e525df2dacc7b2fff3;p=thirdparty%2FPython%2Fcpython.git gh-117139: Fix missing semicolon (GH-118573) --- diff --git a/Include/internal/pycore_stackref.h b/Include/internal/pycore_stackref.h index fd929cd4873a..93898174789f 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); \