Add missing 'break' keyword in e_machine_to_string()

* src/abg-dwarf-reader.cc (e_machine_to_string): Add missing
	'break' keywords in switch/case statement.

Signed-off-by: Dodji Seketeli <dodji@redhat.com>
This commit is contained in:
Dodji Seketeli 2015-09-13 15:47:10 +02:00
parent 04167e5c66
commit e15a2d9e83

View File

@ -485,12 +485,14 @@ e_machine_to_string(GElf_Half e_machine)
break;
case EM_ALPHA:
result = "elf-non-official-alpha";
break;
default:
{
std::ostringstream o;
o << "elf-unknown-arch-value-" << e_machine;
result = o.str();
}
break;
}
return result;
}