format code

This commit is contained in:
yangzao
2023-11-27 09:58:03 -07:00
parent faedb3fb29
commit c9e0f01b43
4 changed files with 34 additions and 34 deletions

View File

@ -939,9 +939,7 @@ void post_run_py(void *py_mutator) {
py_args = PyTuple_New(0);
py_value = PyObject_CallObject(
((py_mutator_t *)py_mutator)
->py_functions[PY_FUNC_POST_RUN],
py_args);
((py_mutator_t *)py_mutator)->py_functions[PY_FUNC_POST_RUN], py_args);
Py_DECREF(py_args);
if (py_value != NULL) {