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
path: root/source
diff options
context:
space:
mode:
authorCampbell Barton <campbell@blender.org>2022-05-17 03:01:30 +0300
committerCampbell Barton <campbell@blender.org>2022-05-17 03:01:30 +0300
commit405d32bc80c8aeb671b2fbb84635dc05decdb87e (patch)
tree0d19f915b7a7415715cf4db103b92fb077c3557f /source
parent8c4bd02b067af921d0a7dcbfc601bd0ef0941be1 (diff)
Cleanup: compiler warnings
Diffstat (limited to 'source')
-rw-r--r--source/blender/editors/space_sequencer/sequencer_add.c4
-rw-r--r--source/blender/editors/space_sequencer/sequencer_edit.c2
2 files changed, 4 insertions, 2 deletions
diff --git a/source/blender/editors/space_sequencer/sequencer_add.c b/source/blender/editors/space_sequencer/sequencer_add.c
index fb5983dcf76..b3a3bb4a62b 100644
--- a/source/blender/editors/space_sequencer/sequencer_add.c
+++ b/source/blender/editors/space_sequencer/sequencer_add.c
@@ -521,7 +521,9 @@ static int sequencer_add_scene_strip_new_exec(bContext *C, wmOperator *op)
return OPERATOR_FINISHED;
}
-static int sequencer_add_scene_strip_new_invoke(bContext *C, wmOperator *op, const wmEvent *event)
+static int sequencer_add_scene_strip_new_invoke(bContext *C,
+ wmOperator *op,
+ const wmEvent *UNUSED(event))
{
sequencer_disable_one_time_properties(C, op);
sequencer_generic_invoke_xy__internal(C, op, 0, SEQ_TYPE_SCENE);
diff --git a/source/blender/editors/space_sequencer/sequencer_edit.c b/source/blender/editors/space_sequencer/sequencer_edit.c
index 4b72b989e80..677ee0c1683 100644
--- a/source/blender/editors/space_sequencer/sequencer_edit.c
+++ b/source/blender/editors/space_sequencer/sequencer_edit.c
@@ -3070,7 +3070,7 @@ void SEQUENCER_OT_change_path(struct wmOperatorType *ot)
/** \name Change Strip Scene Operator
* \{ */
-bool sequencer_strip_change_scene_poll(bContext *C)
+static bool sequencer_strip_change_scene_poll(bContext *C)
{
Editing *ed = SEQ_editing_get(CTX_data_scene(C));
if (ed == NULL) {