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>2016-03-27 13:33:34 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2016-03-27 13:36:49 +0300
commitfb9315ce2ad762c1bd09f38d2f62db2341469aa9 (patch)
tree497239a9f9439099c987fdcede540ede9eb3ab5a /source/blender/editors/animation/drivers.c
parente12650bdd1f7d68f4325e879fe6551163f709f2f (diff)
Cleanup: Silence some compiler warnings
Diffstat (limited to 'source/blender/editors/animation/drivers.c')
-rw-r--r--source/blender/editors/animation/drivers.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/editors/animation/drivers.c b/source/blender/editors/animation/drivers.c
index 66e3cceba49..f94caa4fdd1 100644
--- a/source/blender/editors/animation/drivers.c
+++ b/source/blender/editors/animation/drivers.c
@@ -175,10 +175,10 @@ EnumPropertyItem prop_driver_create_mapping_types[] = {
/* Helper for ANIM_add_driver_with_target - Adds the actual driver */
static int add_driver_with_target(
- ReportList *reports,
+ ReportList *UNUSED(reports),
ID *dst_id, const char dst_path[], int dst_index,
ID *src_id, const char src_path[], int src_index,
- PointerRNA *dst_ptr, PropertyRNA *dst_prop,
+ PointerRNA *UNUSED(dst_ptr), PropertyRNA *dst_prop,
PointerRNA *src_ptr, PropertyRNA *src_prop,
short flag, int driver_type)
{