From d2ea9c20635e090edbe96d26a1a40ef8b42418a7 Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Thu, 21 Dec 2017 17:19:07 +0100 Subject: [PATCH] Fix typo in previous commit --- .../blender/depsgraph/intern/debug/deg_debug_stats_gnuplot.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/blender/depsgraph/intern/debug/deg_debug_stats_gnuplot.cc b/source/blender/depsgraph/intern/debug/deg_debug_stats_gnuplot.cc index b889ebf8a8f..35888f8d5e3 100644 --- a/source/blender/depsgraph/intern/debug/deg_debug_stats_gnuplot.cc +++ b/source/blender/depsgraph/intern/debug/deg_debug_stats_gnuplot.cc @@ -110,7 +110,7 @@ void write_stats_data(const DebugContext& ctx) deg_debug_fprintf(ctx, "$data << EOD" NL); foreach (const StatsEntry& entry, stats) { deg_debug_fprintf(ctx, "\"%s\",%f" NL, - id_node->id_orig->name + 2, + entry.id_node->id_orig->name + 2, entry.time); } deg_debug_fprintf(ctx, "EOD" NL);