CFGU: Indentation

master
Subv 2014-12-21 17:54:14 +07:00
parent 6f304d3b00
commit f080e3ccfa
1 changed files with 3 additions and 4 deletions

@ -44,8 +44,7 @@ ResultCode GetConfigInfoBlock(u32 block_id, u32 size, u32 flag, u8* output) {
auto itr = std::find_if(std::begin(config->block_entries), std::end(config->block_entries),
[&](const SaveConfigBlockEntry& entry) {
return entry.block_id == block_id && entry.size == size &&
(entry.flags & flag);
return entry.block_id == block_id && entry.size == size && (entry.flags & flag);
});
if (itr == std::end(config->block_entries)) {