Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Sharybin <sergey.vfx@gmail.com>2018-05-03 13:15:37 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2018-05-03 13:55:00 +0300
commit98ac0188ed0f2b0a6f7e401b1e769151509eb36a (patch)
tree8f8a97a1a34ed36872142b8466d4eca5d008edcc
parentc4bf936d53427d8e20981f8972cc0ff111f51970 (diff)
Depsgraph: Fix wrong debug message
-rw-r--r--source/blender/depsgraph/intern/depsgraph.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/depsgraph/intern/depsgraph.cc b/source/blender/depsgraph/intern/depsgraph.cc
index bae798b82f7..f25be922db9 100644
--- a/source/blender/depsgraph/intern/depsgraph.cc
+++ b/source/blender/depsgraph/intern/depsgraph.cc
@@ -733,8 +733,8 @@ void DEG_debug_print_eval_time(struct Depsgraph *depsgraph,
return;
}
fprintf(stdout,
- depsgraph_name_for_logging(depsgraph).c_str(),
"%s%s on %s %s(%p)%s at time %f\n",
+ depsgraph_name_for_logging(depsgraph).c_str(),
function_name,
object_name,
DEG::deg_color_for_pointer(object_address).c_str(),