mirror of
git://sourceware.org/git/libabigail.git
synced 2025-03-29 23:08:13 +00:00
Bug 21631 - Forgot a "break" statement in stv_to_elf_symbol_visibility
This seems to be a typo where I forgot to add a "break" statement in the stv_to_elf_symbol_visibility function. Oops. This patch fixes that. * src/abg-dwarf-reader.cc (stv_to_elf_symbol_visibility): Add a missing break statement. Signed-off-by: Dodji Seketeli <dodji@redhat.com>
This commit is contained in:
parent
9c7585c700
commit
122b95daff
@ -569,6 +569,7 @@ stv_to_elf_symbol_visibility(unsigned char stv)
|
||||
break;
|
||||
case STV_PROTECTED:
|
||||
v = elf_symbol::PROTECTED_VISIBILITY;
|
||||
break;
|
||||
default:
|
||||
ABG_ASSERT_NOT_REACHED;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user