aboutsummaryrefslogtreecommitdiffstats
path: root/tools/perf/util/scripting-engines
diff options
context:
space:
mode:
authorChris Phlipot <cphlipot0@gmail.com>2016-05-07 05:17:00 -0400
committerArnaldo Carvalho de Melo <acme@redhat.com>2016-05-09 13:08:39 -0400
commitaff633406ca2772554bad7b37f2dfbc409b6ea74 (patch)
treeeff8e5a79c4d70c203d1145bcb37de5803bc7c43 /tools/perf/util/scripting-engines
parentf340c5fc93bda334efd9f2b5855ef0d3746e1564 (diff)
perf script: Fix incorrect python db-export error message
Fix the error message printed when attempting and failing to create the call path root incorrectly references the call return process. This change fixes the message to properly reference the failure to create the call path root. Signed-off-by: Chris Phlipot <cphlipot0@gmail.com> Cc: Adrian Hunter <adrian.hunter@intel.com> Cc: Peter Zijlstra <peterz@infradead.org> Link: http://lkml.kernel.org/r/1462612620-25008-2-git-send-email-cphlipot0@gmail.com Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/util/scripting-engines')
-rw-r--r--tools/perf/util/scripting-engines/trace-event-python.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/perf/util/scripting-engines/trace-event-python.c b/tools/perf/util/scripting-engines/trace-event-python.c
index 091bce67844c..1546b749a3a3 100644
--- a/tools/perf/util/scripting-engines/trace-event-python.c
+++ b/tools/perf/util/scripting-engines/trace-event-python.c
@@ -1062,7 +1062,7 @@ static void set_table_handlers(struct tables *tables)
1062 tables->dbe.cpr = call_path_root__new(); 1062 tables->dbe.cpr = call_path_root__new();
1063 1063
1064 if (!tables->dbe.cpr) 1064 if (!tables->dbe.cpr)
1065 Py_FatalError("failed to create calls processor"); 1065 Py_FatalError("failed to create call path root");
1066 } 1066 }
1067 1067
1068 tables->db_export_mode = true; 1068 tables->db_export_mode = true;