/* if yes, then give it the old uuid */
if (i != old_branches) {
- memcpy(new_uuids + bindex * UUID_LEN, old_uuids + i * UUID_LEN, UUID_LEN);
+ memcpy(new_uuids + bindex * UUID_LEN,
+ old_uuids + i * UUID_LEN, UUID_LEN);
continue;
}
}
if (i != bindex)
- memcpy(new_uuids + bindex * UUID_LEN, new_uuids + i * UUID_LEN, UUID_LEN);
+ memcpy(new_uuids + bindex * UUID_LEN,
+ new_uuids + i * UUID_LEN, UUID_LEN);
else /* if this is a new fs in the union give it a new uuid */
generate_random_uuid(new_uuids + bindex * UUID_LEN);