diff options
Diffstat (limited to 'Include')
-rw-r--r-- | Include/cpython/code.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/cpython/code.h b/Include/cpython/code.h index 6a13ff2..1c61932 100644 --- a/Include/cpython/code.h +++ b/Include/cpython/code.h @@ -28,7 +28,7 @@ typedef union { #define _Py_OPARG(word) ((word).oparg) static inline void -_py_set_opocde(_Py_CODEUNIT *word, uint8_t opcode) +_py_set_opcode(_Py_CODEUNIT *word, uint8_t opcode) { word->opcode = opcode; } |