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:
Dodji Seketeli 2017-06-27 12:32:00 +02:00
parent 9c7585c700
commit 122b95daff

View File

@ -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;
}