From 3c62e539af9ce3a1eebb5541dd5a2d70e77e6103 Mon Sep 17 00:00:00 2001 From: Lukas Stockner Date: Mon, 11 Apr 2022 23:49:37 +0200 Subject: Cleanup: clang-format --- source/blender/editors/mask/mask_ops.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source/blender/editors/mask') diff --git a/source/blender/editors/mask/mask_ops.c b/source/blender/editors/mask/mask_ops.c index d727c9f919b..3c0e7ee399c 100644 --- a/source/blender/editors/mask/mask_ops.c +++ b/source/blender/editors/mask/mask_ops.c @@ -272,14 +272,14 @@ static bool spline_under_mouse_get(const bContext *C, } for (MaskLayer *mask_layer_orig = mask_orig->masklayers.first, - *mask_layer_eval = mask_eval->masklayers.first; + *mask_layer_eval = mask_eval->masklayers.first; mask_layer_orig != NULL; mask_layer_orig = mask_layer_orig->next, mask_layer_eval = mask_layer_eval->next) { if (mask_layer_orig->visibility_flag & (MASK_HIDE_VIEW | MASK_HIDE_SELECT)) { continue; } for (MaskSpline *spline_orig = mask_layer_orig->splines.first, - *spline_eval = mask_layer_eval->splines.first; + *spline_eval = mask_layer_eval->splines.first; spline_orig != NULL; spline_orig = spline_orig->next, spline_eval = spline_eval->next) { if ((spline_orig->flag & SELECT) == 0) { -- cgit v1.2.3