From 63533a0c7ded4b03e1da94e877765b2cb5d485e6 Mon Sep 17 00:00:00 2001 From: Antonio Vazquez Date: Sun, 25 Aug 2019 17:13:13 +0200 Subject: Cleanup: Clarify alloc comment text --- source/blender/editors/gpencil/gpencil_brush.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source') 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); -- cgit v1.2.3