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:
authorCampbell Barton <ideasman42@gmail.com>2018-04-03 17:45:05 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-04-03 18:03:33 +0300
commit53f068454e8c774ef68997f3b8afb5da9417b03c (patch)
tree21e760a8a13b42c48f8c514599e82574f89d350f /source/blender/blenkernel/intern/undo_system.c
parent96f565b380a8552e91151b9879746a1992283a35 (diff)
Fix mistake logging w/ undo
Diffstat (limited to 'source/blender/blenkernel/intern/undo_system.c')
-rw-r--r--source/blender/blenkernel/intern/undo_system.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenkernel/intern/undo_system.c b/source/blender/blenkernel/intern/undo_system.c
index ddcd16f998e..bb4c0b1130e 100644
--- a/source/blender/blenkernel/intern/undo_system.c
+++ b/source/blender/blenkernel/intern/undo_system.c
@@ -355,7 +355,7 @@ void BKE_undosys_step_push_init_with_type(UndoStack *ustack, bContext *C, const
if (ut->step_encode_init) {
undosys_stack_validate(ustack, false);
UndoStep *us = MEM_callocN(ut->step_size, __func__);
- CLOG_INFO(&LOG, 1, "%p, '%s', type='%s'", us, name, us->type->name);
+ CLOG_INFO(&LOG, 1, "%p, '%s', type='%s'", us, name, ut->name);
if (name != NULL) {
BLI_strncpy(us->name, name, sizeof(us->name));
}