Skip to content

Commit 8fda407

Browse files
committed
fix error
1 parent d42d2a6 commit 8fda407

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Python/bytecodes.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -804,7 +804,7 @@ dummy_func(
804804
assert(d);
805805
assert(d->guard);
806806
int res = d->guard(left_o, right_o);
807-
ERROR_IF(res < 0, error);
807+
ERROR_IF(res < 0);
808808
DEOPT_IF(res == 0);
809809
}
810810

@@ -818,7 +818,7 @@ dummy_func(
818818

819819
PyObject *res_o = d->action(left_o, right_o);
820820
DECREF_INPUTS();
821-
ERROR_IF(res_o == NULL, error);
821+
ERROR_IF(res_o == NULL);
822822
res = PyStackRef_FromPyObjectSteal(res_o);
823823
}
824824

0 commit comments

Comments
 (0)