[Bf-blender-cvs] [63533a0c7de] master: Cleanup: Clarify alloc comment text

Antonio Vazquez noreply at git.blender.org
Sun Aug 25 17:13:24 CEST 2019


Commit: 63533a0c7ded4b03e1da94e877765b2cb5d485e6
Author: Antonio Vazquez
Date:   Sun Aug 25 17:13:13 2019 +0200
Branches: master
https://developer.blender.org/rB63533a0c7ded4b03e1da94e877765b2cb5d485e6

Cleanup: Clarify alloc comment text

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

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

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

diff --git a/source/blender/editors/gpencil/gpencil_brush.c b/source/blender/editors/gpencil/gpencil_brush.c
index 7b8cfc58a5f..5d2558c2fff 100644
--- a/source/blender/editors/gpencil/gpencil_brush.c
+++ b/source/blender/editors/gpencil/gpencil_brush.c
@@ -497,7 +497,7 @@ static void gp_brush_grab_stroke_init(tGP_BrushEditData *gso, bGPDstroke *gps)
 
     data->points = MEM_callocN(sizeof(int) * data->capacity, "GP Stroke Grab Indices");
     data->weights = MEM_callocN(sizeof(float) * data->capacity, "GP Stroke Grab Weights");
-    data->rot_eval = MEM_callocN(sizeof(float) * data->capacity, "GP Stroke Grab X");
+    data->rot_eval = MEM_callocN(sizeof(float) * data->capacity, "GP Stroke Grab Rotations");
 
     /* hook up to the cache */
     BLI_ghash_insert(gso->stroke_customdata, gps, data);



More information about the Bf-blender-cvs mailing list