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>2013-03-12 18:06:18 +0400
committerSergey Sharybin <sergey.vfx@gmail.com>2013-03-12 18:06:18 +0400
commit96412b711e250bf41e075c417eb5845a8916529c (patch)
treef26b9fe8ca3675be3be7883378dba494f96ae900 /source/blender/editors/space_outliner/outliner_draw.c
parentebcb4b5e75c4bb317018fe523511a71dbcaaddc7 (diff)
Fix for strict compiler's flags
Diffstat (limited to 'source/blender/editors/space_outliner/outliner_draw.c')
-rw-r--r--source/blender/editors/space_outliner/outliner_draw.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/editors/space_outliner/outliner_draw.c b/source/blender/editors/space_outliner/outliner_draw.c
index e2b2cda6cf6..b84f5a4f5ae 100644
--- a/source/blender/editors/space_outliner/outliner_draw.c
+++ b/source/blender/editors/space_outliner/outliner_draw.c
@@ -291,7 +291,7 @@ static void restrictbutton_bone_select_cb(bContext *C, void *poin, void *poin2)
WM_event_add_notifier(C, NC_OBJECT | ND_POSE, NULL);
}
-static void restrictbutton_ebone_select_cb(bContext *C, void *poin, void *poin2)
+static void restrictbutton_ebone_select_cb(bContext *C, void *UNUSED(poin), void *poin2)
{
EditBone *ebone = (EditBone *)poin2;
@@ -306,7 +306,7 @@ static void restrictbutton_ebone_select_cb(bContext *C, void *poin, void *poin2)
WM_event_add_notifier(C, NC_OBJECT | ND_POSE, NULL);
}
-static void restrictbutton_ebone_visibility_cb(bContext *C, void *poin, void *poin2)
+static void restrictbutton_ebone_visibility_cb(bContext *C, void *UNUSED(poin), void *poin2)
{
EditBone *ebone = (EditBone *)poin2;
if (ebone->flag & BONE_HIDDEN_A) {