Cleanup: fix compiler warnings

This commit is contained in:
Brecht Van Lommel 2019-08-14 23:26:26 +02:00
parent 037cf920b4
commit 67f49f9c03
2 changed files with 3 additions and 2 deletions

View File

@ -978,7 +978,7 @@ static void curve_to_mesh_eval_ensure(Object *object)
*
* So we create temporary copy of the object which will use same data as the original bevel, but
* will have no modifiers. */
Object bevel_object = {NULL};
Object bevel_object = {{NULL}};
if (remapped_curve.bevobj != NULL) {
bevel_object = *remapped_curve.bevobj;
BLI_listbase_clear(&bevel_object.modifiers);
@ -986,7 +986,7 @@ static void curve_to_mesh_eval_ensure(Object *object)
}
/* Same thing for taper. */
Object taper_object = {NULL};
Object taper_object = {{NULL}};
if (remapped_curve.taperobj != NULL) {
taper_object = *remapped_curve.taperobj;
BLI_listbase_clear(&taper_object.modifiers);

View File

@ -187,6 +187,7 @@ static bool text_undosys_step_encode(struct bContext *C,
Text *text = us->text_ref.ptr;
BLI_assert(text == CTX_data_edit_text(C));
UNUSED_VARS_NDEBUG(C);
us->step.data_size += text_undosys_step_encode_to_state(&us->states[1], text);