From b425e94381a43353d1868aafd0478636235a1431 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Tue, 1 Aug 2017 07:55:01 +1000 Subject: Correct accidental variable declaration --- extern/curve_fit_nd/intern/curve_fit_cubic_refit.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'extern') diff --git a/extern/curve_fit_nd/intern/curve_fit_cubic_refit.c b/extern/curve_fit_nd/intern/curve_fit_cubic_refit.c index 96ec9a33270..b5340efdcb2 100644 --- a/extern/curve_fit_nd/intern/curve_fit_cubic_refit.c +++ b/extern/curve_fit_nd/intern/curve_fit_cubic_refit.c @@ -137,7 +137,7 @@ struct Knot { /* Initially point to contiguous memory, however we may re-assign */ double *tan[2]; -} Knot; +}; struct KnotRemoveState { @@ -1102,7 +1102,7 @@ int curve_fit_cubic_to_points_refit_db( uint **r_corner_index_array, uint *r_corner_index_len) { const uint knots_len = points_len; - struct Knot *knots = malloc(sizeof(Knot) * knots_len); + struct Knot *knots = malloc(sizeof(struct Knot) * knots_len); #ifndef USE_CORNER_DETECT (void)r_corner_index_array; -- cgit v1.2.3