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>2015-04-09 10:19:50 +0300
committerCampbell Barton <ideasman42@gmail.com>2015-04-09 10:20:02 +0300
commit5467260ce9af14d8bd4d88758e1925c88dafa8c8 (patch)
treeaeed4d4a93425f943dc683878400d3e2546475e2 /source/blender/editors/space_action/action_data.c
parent0b598651154ddaaff4ae721e1627b1f99de67d94 (diff)
Cleanup: redundant NULL checks
Diffstat (limited to 'source/blender/editors/space_action/action_data.c')
-rw-r--r--source/blender/editors/space_action/action_data.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/space_action/action_data.c b/source/blender/editors/space_action/action_data.c
index a7358172ef5..440201bd93e 100644
--- a/source/blender/editors/space_action/action_data.c
+++ b/source/blender/editors/space_action/action_data.c
@@ -646,7 +646,7 @@ static NlaTrack *nla_tweak_track_get(AnimData *adt)
printf("%s: Active strip (%p, %s) not in NLA track found (%p, %s)\n",
__func__,
adt->actstrip, (adt->actstrip) ? adt->actstrip->name : "<None>",
- nlt, (nlt) ? nlt->name : "<None>");
+ nlt, nlt->name);
}
}
}