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:
authorHarley Acheson <harley.acheson@gmail.com>2021-06-14 20:42:28 +0300
committerHarley Acheson <harley.acheson@gmail.com>2021-06-14 20:42:28 +0300
commitd08e925ef1aaa892b0d5bb549d4ec2c8b47d7187 (patch)
tree87fce11b202e6608489722fc14b52127c70d29b4
parentbcff0ef9cabc37c4b89a1e2c7972a09ac80d4555 (diff)
Fix Build Warning
Marking unused function argument. Introduced in bcff0ef9cabc Differential Revision: https://developer.blender.org/D10887
-rw-r--r--source/blender/editors/space_file/file_ops.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/space_file/file_ops.c b/source/blender/editors/space_file/file_ops.c
index 4bbdbb0d97c..334e421c837 100644
--- a/source/blender/editors/space_file/file_ops.c
+++ b/source/blender/editors/space_file/file_ops.c
@@ -2636,7 +2636,7 @@ void FILE_OT_hidedot(struct wmOperatorType *ot)
/** \name Associate File Type Operator (Windows only)
* \{ */
-static int associate_blend_exec(bContext *C, wmOperator *op)
+static int associate_blend_exec(bContext *UNUSED(C), wmOperator *op)
{
#ifdef WIN32
WM_cursor_wait(true);