GPencil: Cleanup clang format

This commit is contained in:
Antonio Vazquez 2020-11-14 15:16:27 +01:00
parent b6041bfc6c
commit c2f76f1550
1 changed files with 2 additions and 1 deletions

View File

@ -158,7 +158,8 @@ static void greasepencil_blend_write(BlendWriter *writer, ID *id, const void *id
if (gps->editcurve != NULL) {
bGPDcurve *gpc = gps->editcurve;
BLO_write_struct(writer, bGPDcurve, gpc);
BLO_write_struct_array(writer, bGPDcurve_point, gpc->tot_curve_points, gpc->curve_points);
BLO_write_struct_array(
writer, bGPDcurve_point, gpc->tot_curve_points, gpc->curve_points);
}
}
}