From 752a9b743e9703e674b28e0bc041a43011147676 Mon Sep 17 00:00:00 2001 From: Michael Kowalski Date: Mon, 12 Sep 2022 15:47:45 -0400 Subject: USD IO: fixed compiler warnings --- source/blender/editors/io/io_usd.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source/blender') 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); } -- cgit v1.2.3