From d08e925ef1aaa892b0d5bb549d4ec2c8b47d7187 Mon Sep 17 00:00:00 2001 From: Harley Acheson Date: Mon, 14 Jun 2021 10:42:28 -0700 Subject: [PATCH] Fix Build Warning Marking unused function argument. Introduced in bcff0ef9cabc Differential Revision: https://developer.blender.org/D10887 --- source/blender/editors/space_file/file_ops.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);