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:
authorJoshua Leung <aligorith@gmail.com>2016-04-15 13:05:18 +0300
committerJoshua Leung <aligorith@gmail.com>2016-04-15 16:12:50 +0300
commit88c071fbb5e454ad480344642d5ddfb852a2f98b (patch)
treecea06d6603989f14f81a213f7df6da4791d27a3d /source/blender/editors
parent209cd5db96c2303de019f6075f6fb36e69567d4e (diff)
Code Cleanup: Remove unused define left over from earlier versions of this code
Diffstat (limited to 'source/blender/editors')
-rw-r--r--source/blender/editors/animation/drivers.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/editors/animation/drivers.c b/source/blender/editors/animation/drivers.c
index 99e4128ef54..c7c945b492b 100644
--- a/source/blender/editors/animation/drivers.c
+++ b/source/blender/editors/animation/drivers.c
@@ -635,8 +635,9 @@ void ANIM_driver_vars_copybuf_free(void)
{
/* Free the driver variables kept in the buffer */
if (driver_vars_copybuf.first) {
- /* Free variables (and any data they use) */
DriverVar *dvar, *dvarn;
+
+ /* Free variables (and any data they use) */
for (dvar = driver_vars_copybuf.first; dvar; dvar = dvarn) {
dvarn = dvar->next;
driver_free_variable(&driver_vars_copybuf, dvar);