LibOverride: Fix early break in some of the resync code.

This `break` moved out of its braces at some point in the previous
fixes/refctors... :(
This commit is contained in:
Bastien Montagne 2021-06-04 15:54:07 +02:00
parent 0037e08b06
commit b6d6d8a1aa
1 changed files with 1 additions and 1 deletions

View File

@ -1507,8 +1507,8 @@ static void lib_override_library_main_resync_on_library_indirect_level(
id_to->name,
id_to->lib);
lib_override_resync_tagging_finalize_recurse(bmain, id, library_indirect_level);
break;
}
break;
}
}
FOREACH_MAIN_ID_END;