Skip to content

Commit a0d36ec

Browse files
fix name err
1 parent fb21187 commit a0d36ec

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mypyc/lib-rt/str_ops.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ char CPyStr_EqualLiteral(PyObject *str, PyObject *literal_str, Py_ssize_t litera
9090
if (str == literal_str) {
9191
return 1;
9292
}
93-
return _CPyStr_Equal_NoIdentCheck(str1, str2, literal_length);
93+
return _CPyStr_Equal_NoIdentCheck(str, literal_str, literal_length);
9494
}
9595

9696
PyObject *CPyStr_GetItem(PyObject *str, CPyTagged index) {

0 commit comments

Comments
 (0)