mirror of
git://sourceware.org/git/libabigail.git
synced 2025-01-17 06:41:18 +00:00
Add missing new line after reporting alignment changes
* src/abg-comparison.cc (distinct_diff::report): After calling report_size_and_alignment_changes, one needs to add a new line if some stuff got emitted out the output stream. Signed-off-by: Dodji Seketeli <dodji@redhat.com>
This commit is contained in:
parent
bbf550f493
commit
5f929d456c
@ -3818,7 +3818,8 @@ distinct_diff::report(ostream& out, const string& indent) const
|
||||
if (diff_sptr diff = compatible_child_diff())
|
||||
diff->report(out, indent + " ");
|
||||
else
|
||||
report_size_and_alignment_changes(f, s, context(), out, indent, true);
|
||||
if (report_size_and_alignment_changes(f, s, context(), out, indent, true))
|
||||
out << "\n";
|
||||
}
|
||||
|
||||
/// Try to diff entities that are of distinct kinds.
|
||||
|
Loading…
Reference in New Issue
Block a user