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:
authorAntonioya <blendergit@gmail.com>2018-08-26 18:25:17 +0300
committerAntonioya <blendergit@gmail.com>2018-08-26 18:25:17 +0300
commit6ee5e6a333c229aa105206b07817ee9bf4a75c2e (patch)
treecfa6a7f00a5e9cf9f6fc447e868fed9c5841d481 /source/blender/editors/gpencil/gpencil_fill.c
parent1948681440c011ae3008cd5d2a575eb6d45dc7ec (diff)
Cleanup: remove double ;
Diffstat (limited to 'source/blender/editors/gpencil/gpencil_fill.c')
-rw-r--r--source/blender/editors/gpencil/gpencil_fill.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/editors/gpencil/gpencil_fill.c b/source/blender/editors/gpencil/gpencil_fill.c
index d3132d78aa4..895bc760aa6 100644
--- a/source/blender/editors/gpencil/gpencil_fill.c
+++ b/source/blender/editors/gpencil/gpencil_fill.c
@@ -803,7 +803,7 @@ static void gpencil_points_from_stack(tGPDfill *tgpf)
point2D->y = v[1];
point2D->pressure = 1.0f;
- point2D->strength = 1.0f;;
+ point2D->strength = 1.0f;
point2D->time = 0.0f;
point2D++;
}
@@ -873,7 +873,7 @@ static void gpencil_stroke_from_buffer(tGPDfill *tgpf)
&pt->x);
pt->pressure = 1.0f;
- pt->strength = 1.0f;;
+ pt->strength = 1.0f;
pt->time = 0.0f;
if (gps->dvert != NULL) {