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-01-06 16:58:10 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-01-07 01:15:07 +0300
commitb4a77a351e31256c91e573b85b7252e3ca6d61e7 (patch)
tree9db5ba44e217789f632f90d44babafa4aea1da5f /source/blender/python
parentd5c24f2030ecbd109f54bd49c254fd028c30cc00 (diff)
Cleanup: add trailing commas to structs
Diffstat (limited to 'source/blender/python')
-rw-r--r--source/blender/python/bmesh/bmesh_py_types.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/python/bmesh/bmesh_py_types.c b/source/blender/python/bmesh/bmesh_py_types.c
index c1be2cd20d1..d18f660197d 100644
--- a/source/blender/python/bmesh/bmesh_py_types.c
+++ b/source/blender/python/bmesh/bmesh_py_types.c
@@ -1019,7 +1019,7 @@ static PyObject *bpy_bmesh_from_object(BPy_BMesh *self, PyObject *args, PyObject
BM_mesh_bm_from_me(
bm, me_eval, (&(struct BMeshFromMeshParams){
- .calc_face_normal = use_fnorm
+ .calc_face_normal = use_fnorm,
}));
Py_RETURN_NONE;