perf evlist: Rename for_each() macros to for_each_entry()
[deliverable/linux.git] / tools / perf / util / python.c
index 98f127abfa42a2d9b8d06b24b6c17090781c87fb..65c6c73d28fe4094fac7a0df5a9773c7f3cab939 100644 (file)
@@ -957,7 +957,7 @@ static PyObject *pyrf_evlist__item(PyObject *obj, Py_ssize_t i)
        if (i >= pevlist->evlist.nr_entries)
                return NULL;
 
-       evlist__for_each(&pevlist->evlist, pos) {
+       evlist__for_each_entry(&pevlist->evlist, pos) {
                if (i-- == 0)
                        break;
        }
This page took 0.025083 seconds and 5 git commands to generate.