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:
authorBastien Montagne <bastien@blender.org>2021-10-20 15:56:18 +0300
committerBastien Montagne <bastien@blender.org>2021-10-20 15:56:18 +0300
commit3435ea014d42d1e223513f448cbdaba63864115c (patch)
tree875ab41e6907990225972ff105e6503c45ec2b51 /source/blender/editors/space_view3d/view3d_cursor_snap.c
parentdfb193f634bf2d4b6a28b458d7d23b79bcd45633 (diff)
Cleanup: unused parameters, `nullptr` instead of `NULL` in cpp code...
Diffstat (limited to 'source/blender/editors/space_view3d/view3d_cursor_snap.c')
-rw-r--r--source/blender/editors/space_view3d/view3d_cursor_snap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/space_view3d/view3d_cursor_snap.c b/source/blender/editors/space_view3d/view3d_cursor_snap.c
index b3e010bb938..4457afcb67f 100644
--- a/source/blender/editors/space_view3d/view3d_cursor_snap.c
+++ b/source/blender/editors/space_view3d/view3d_cursor_snap.c
@@ -754,7 +754,7 @@ static bool v3d_cursor_snap_pool_fn(bContext *C)
return true;
}
-static void v3d_cursor_snap_draw_fn(bContext *C, int x, int y, void *customdata)
+static void v3d_cursor_snap_draw_fn(bContext *C, int x, int y, void *UNUSED(customdata))
{
SnapCursorDataIntern *data_intern = &g_data_intern;
V3DSnapCursorState *state = ED_view3d_cursor_snap_state_get();