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:
authorCampbell Barton <ideasman42@gmail.com>2019-11-21 15:06:06 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-11-21 15:15:02 +0300
commit7c18fcbe03271f15ed4f6f4af14c60e84f8bb9cc (patch)
treec7653aa120e435ca13b053e1e097f577db1b44cf /source/blender/blenkernel/intern/curveprofile.c
parent355905cb0278c368059fdecef8735b731d97b97c (diff)
Cleanup: clang-format
Also remove unused vars.
Diffstat (limited to 'source/blender/blenkernel/intern/curveprofile.c')
-rw-r--r--source/blender/blenkernel/intern/curveprofile.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/blenkernel/intern/curveprofile.c b/source/blender/blenkernel/intern/curveprofile.c
index 6689eca132d..df877e78379 100644
--- a/source/blender/blenkernel/intern/curveprofile.c
+++ b/source/blender/blenkernel/intern/curveprofile.c
@@ -224,9 +224,9 @@ void BKE_curveprofile_selected_handle_set(CurveProfile *profile, int type_1, int
case HD_VECT:
profile->path[i].h2 = HD_VECT;
break;
- default:
- profile->path[i].h1 = HD_AUTO;
- break;
+ default:
+ profile->path[i].h1 = HD_AUTO;
+ break;
}
}
}