[Bf-blender-cvs] [d2ea9c20635] blender2.8: Fix typo in previous commit

Sergey Sharybin noreply at git.blender.org
Thu Dec 21 17:19:17 CET 2017


Commit: d2ea9c20635e090edbe96d26a1a40ef8b42418a7
Author: Sergey Sharybin
Date:   Thu Dec 21 17:19:07 2017 +0100
Branches: blender2.8
https://developer.blender.org/rBd2ea9c20635e090edbe96d26a1a40ef8b42418a7

Fix typo in previous commit

===================================================================

M	source/blender/depsgraph/intern/debug/deg_debug_stats_gnuplot.cc

===================================================================

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);



More information about the Bf-blender-cvs mailing list