fix the indentation

This commit is contained in:
Sukchan Lee
2018-07-04 18:05:30 +09:00
parent 271949ad86
commit c3e5bdba53

View File

@@ -80,10 +80,10 @@ static tlv_t* _tlv_add_leaf(
if (parent_tlv)
tlv = tlv_embed(parent_tlv,
desc->type, 4, desc->instance, (c_uint8_t*)&v->u32);
desc->type, 4, desc->instance, (c_uint8_t*)&v->u32);
else
tlv = tlv_add(tlv,
desc->type, 4, desc->instance, (c_uint8_t*)&v->u32);
desc->type, 4, desc->instance, (c_uint8_t*)&v->u32);
d_assert(tlv, return NULL, "Can't add TLV");
break;
}