[Bf-blender-cvs] [6ee5e6a333c] blender2.8: Cleanup: remove double ;

Antonioya noreply at git.blender.org
Sun Aug 26 17:25:29 CEST 2018


Commit: 6ee5e6a333c229aa105206b07817ee9bf4a75c2e
Author: Antonioya
Date:   Sun Aug 26 17:25:17 2018 +0200
Branches: blender2.8
https://developer.blender.org/rB6ee5e6a333c229aa105206b07817ee9bf4a75c2e

Cleanup: remove double ;

===================================================================

M	source/blender/editors/gpencil/gpencil_fill.c

===================================================================

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) {



More information about the Bf-blender-cvs mailing list