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:
authorMichael Kowalski <makowalski@nvidia.com>2022-09-12 21:23:54 +0300
committerMichael Kowalski <makowalski@nvidia.com>2022-09-12 21:23:54 +0300
commitba3c642f77a46dc7dcfaa77ee1cf95d1e80fc6bf (patch)
tree23b5b83e7727b91e922dfa89c5c70eca7906a13e
parent54571003dc115233896df97c8d80a03f00fd8c14 (diff)
USD IO: fixed warnings.tmp_mak_091222
-rw-r--r--source/blender/editors/io/io_usd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/editors/io/io_usd.c b/source/blender/editors/io/io_usd.c
index 534ba813743..eb80cabcd7f 100644
--- a/source/blender/editors/io/io_usd.c
+++ b/source/blender/editors/io/io_usd.c
@@ -199,7 +199,7 @@ static void free_operator_customdata(wmOperator *op)
}
}
-static void wm_usd_export_cancel(bContext *C, wmOperator *op, const wmEvent *event)
+static void wm_usd_export_cancel(bContext *UNUSED(C), wmOperator *op)
{
free_operator_customdata(op);
}
@@ -436,7 +436,7 @@ static int wm_usd_import_exec(bContext *C, wmOperator *op)
return as_background_job || ok ? OPERATOR_FINISHED : OPERATOR_CANCELLED;
}
-static void wm_usd_import_cancel(bContext *C, wmOperator *op, const wmEvent *event)
+static void wm_usd_import_cancel(bContext *UNUSED(C), wmOperator *op)
{
free_operator_customdata(op);
}