GenericTracing: typo

Change-Id: I02b39a7ad0db49899dd602c1da472b76472da979
This commit is contained in:
Horst Schirmeier
2018-07-30 14:03:55 +02:00
parent d370ded9b9
commit d581fd27a2

View File

@ -121,7 +121,7 @@ void GenericTracing::parseOptions() {
stop_symbol = std::string(cmd[STOP_SYMBOL].first()->arg);
const ElfSymbol& symbol = m_elf->getSymbol(stop_symbol);
if (!symbol.isValid()) {
m_log << "Stop symbol '" << start_symbol << "' not found." << std::endl;
m_log << "Stop symbol '" << stop_symbol << "' not found." << std::endl;
exit(EXIT_FAILURE);
}
stop_address = symbol.getAddress();