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>2019-02-06 01:14:11 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-02-06 01:14:36 +0300
commita245d533514e335f028cfa6cdb26614ed0982484 (patch)
treea3c44af7568f5cbfc9ff5091c587644e1675d8b1 /source/blender/blenkernel/intern/anim_sys.c
parent897e047374fa3d3ceef35aa2cdb3372b6a7cc64a (diff)
Cleanup: style
Diffstat (limited to 'source/blender/blenkernel/intern/anim_sys.c')
-rw-r--r--source/blender/blenkernel/intern/anim_sys.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/blenkernel/intern/anim_sys.c b/source/blender/blenkernel/intern/anim_sys.c
index 6b11d146837..b4706026167 100644
--- a/source/blender/blenkernel/intern/anim_sys.c
+++ b/source/blender/blenkernel/intern/anim_sys.c
@@ -447,7 +447,7 @@ void action_move_fcurves_by_basepath(bAction *srcAct, bAction *dstAct, const cha
if (ELEM(NULL, srcAct, dstAct, basepath)) {
if (G.debug & G_DEBUG) {
CLOG_ERROR(&LOG, "srcAct: %p, dstAct: %p, basepath: %p has insufficient info to work with",
- (void *)srcAct, (void *)dstAct, (void *)basepath);
+ (void *)srcAct, (void *)dstAct, (void *)basepath);
}
return;
}
@@ -550,7 +550,7 @@ void BKE_animdata_separate_by_basepath(
}
else if (dstAdt->action == srcAdt->action) {
CLOG_WARN(&LOG, "Argh! Source and Destination share animation! "
- "('%s' and '%s' both use '%s') Making new empty action",
+ "('%s' and '%s' both use '%s') Making new empty action",
srcID->name, dstID->name, srcAdt->action->id.name);
/* TODO: review this... */